Skip to content

Conversation

changhiskhan
Copy link
Contributor

...r #2255

don't call maybe_convert_objects in _convert_object_array if dtype is object.

Note that it also stops other type conversions too.

@ghost
Copy link

ghost commented Nov 19, 2012

It's better to add new keyword arguments at the end of the arglist,
or you risk breaking existing code:

In [2]: def f(a,b=1):
   ...:    print b
   ...: 
   ...: f(0,'b')
   ...: 
b

In [3]: def f(a,c=2,b=1):
   ...:    print b
   ...: 
   ...: f(0,'b')
1

@wesm wesm merged commit b5ea387 into pandas-dev:master Nov 24, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants