Skip to content

Commit

Permalink
RLS: set released to False
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Oct 10, 2011
1 parent d5cb5ee commit d1a06de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions pandas/core/internals.py
Expand Up @@ -915,7 +915,10 @@ def _union_items_slow(all_items):
seen = seen.union(items)
return seen

from line_profiler import LineProfiler
prof = LineProfiler()

This comment has been minimized.

Copy link
@takluyver

takluyver Oct 10, 2011

Contributor

Were these bits supposed to be in this commit?

This comment has been minimized.

Copy link
@wesm

wesm Oct 10, 2011

Author Member

No, a big "oops" on my part. It happens-- I think I removed them last night in a subsequent commit.


@prof
def join_managers(left, right, axis=1, how='left'):
"""
Parameters
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -129,8 +129,8 @@

MAJOR = 0
MINOR = 4
MICRO = 3
ISRELEASED = True
MICRO = 4
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

FULLVERSION = VERSION
Expand Down

0 comments on commit d1a06de

Please sign in to comment.