-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
FAIL: test_to_string_repr_unicode #2666
New issue
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
Comments
what does the following produce on your system? In [8]: import locale
...: import sys
...: import pandas as pd
...: print(pd.__version__)
...: print( sys.stdout.encoding)
...: print( sys.stdin.encoding)
...: print(locale.getpreferredencoding())
...: print(sys.getdefaultencoding())
...: print(pd.options.display.encoding) |
|
zh_CN.GB18030 (simplified chinese, superceding cp936) should be exotic enough to bring out issues of this sort. #2666
Should be fixed now. closing. |
@y-p sorry for response late, I‘m in GMT+8 ;) |
@y-p thanks. On Thu, Jan 10, 2013 at 10:50 PM, y-p [email protected] wrote:
|
env:
windows 7 32bit english
python 2.7.3
when I run nose test:
issue:
FAIL: test_to_string_repr_unicode (pandas.tests.test_format.TestDataFrameFormatting)
Traceback (most recent call last):
File "D:\Python27\lib\site-packages\pandas\tests\test_format.py", line 141, in
test_to_string_repr_unicode
self.assert_(len(line) == line_len)
AssertionError: False is not true
how to do?
The text was updated successfully, but these errors were encountered: