This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tim.golden
Recipients tim.golden
Date 2010-04-13.13:04:23
SpamBayes Score 6.178135e-06
Marked as misclassified No
Message-id <4BC46BD2.2070102@timgolden.me.uk>
In-reply-to
Content
test_pickle failing on WinXP

http://svn.python.org/projects/python/branches/py3k/Lib r80044

======================================================================
ERROR: test_unicode (__main__.CPicklerTests)
----------------------------------------------------------------------
Traceback (most recent call last):
   File "test\pickletester.py", line 523, in test_unicode
     p = self.dumps(u, proto)
   File "C:\work_in_progress\make-snapshots\branches\py3k\python\Lib\test\test_pickle.py", line 30, in dumps
     p.dump(arg)
UnicodeEncodeError: 'utf-8' codec can't encode character '\udc80' in position 1: surrogates not allowed

======================================================================
ERROR: test_unicode (__main__.CDumpPickle_LoadPickle)
----------------------------------------------------------------------
Traceback (most recent call last):
   File "test\pickletester.py", line 523, in test_unicode
     p = self.dumps(u, proto)
   File "C:\work_in_progress\make-snapshots\branches\py3k\python\Lib\test\test_pickle.py", line 30, in dumps
     p.dump(arg)
UnicodeEncodeError: 'utf-8' codec can't encode character '\udc80' in position 1: surrogates not allowed

======================================================================
ERROR: test_unicode (__main__.DumpPickle_CLoadPickle)
----------------------------------------------------------------------
Traceback (most recent call last):
   File "test\pickletester.py", line 524, in test_unicode
     u2 = self.loads(p)
   File "C:\work_in_progress\make-snapshots\branches\py3k\python\Lib\test\test_pickle.py", line 37, in loads
     return u.load()
UnicodeDecodeError: 'utf8' codec can't decode bytes in position 1-3: illegal encoding

----------------------------------------------------------------------
History
Date User Action Args
2010-04-13 13:04:26tim.goldensetrecipients: + tim.golden
2010-04-13 13:04:24tim.goldenlinkissue8386 messages
2010-04-13 13:04:23tim.goldencreate