We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
edit: This happens on Windows 7 running IPython from cmd.
In pandas 0.6.1: In [13]: pandas.version.version Out[13]: '0.6.1'
In [14]: pandas.DataFrame(['\xc2']) Out[14]: 0 0 ┬
In pandas 0.7.0: In [2]: pandas.version.version Out[2]: '0.7.0'
In [3]: pandas.DataFrame(['\xc2']) ..... C:\Python26\lib\site-packages\pandas\core\common.pyc in _stringify(col) 503 def _stringify(col): 504 # unicode workaround
--> 505 return unicode(col) 506 507 def _maybe_make_list(obj):
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 0: ordinal not in range(128)
The text was updated successfully, but these errors were encountered:
Confirmed in head revision on linux/ipython as well.
Sorry, something went wrong.
2767250
Fix pandas-dev#777: Handle zero columns when converting to unicode
e33309c
Merge pull request pandas-dev#780 from shashank88/zero_column_fix
4393954
Add bugfix pandas-dev#777 to changelog
5bff835
Merge pull request pandas-dev#781 from shashank88/1.79.2
e7f45cd
No branches or pull requests
edit: This happens on Windows 7 running IPython from cmd.
In pandas 0.6.1:
In [13]: pandas.version.version
Out[13]: '0.6.1'
In [14]: pandas.DataFrame(['\xc2'])
Out[14]:
0
0 ┬
In pandas 0.7.0:
In [2]: pandas.version.version
Out[2]: '0.7.0'
In [3]: pandas.DataFrame(['\xc2'])
.....
C:\Python26\lib\site-packages\pandas\core\common.pyc in _stringify(col)
503 def _stringify(col):
504 # unicode workaround
--> 505 return unicode(col)
506
507 def _maybe_make_list(obj):
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 0: ordinal not in range(128)
The text was updated successfully, but these errors were encountered: