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 Paul Monson
Recipients Paul Monson, eryksun, methane, paul.moore, serhiy.storchaka, steve.dower, tim.golden, vstinner, zach.ware
Date 2019-05-08.21:19:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557350361.78.0.817418105962.issue36778@roundup.psfhosted.org>
In-reply-to
Content
Removing import functools from cp65001.py fixes test_startup_imports.

Victor proposed this PR: https://github.com/python/cpython/pull/13110
but new test_codecs fails because it's passing self on to the lambda I think.

I tried to build on Victor's change but there is still one test failure I haven't tracked down yet: https://github.com/python/cpython/pull/13211

FAIL: test_incremental_surrogatepass (test.test_codecs.CP65001Test)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\master\pythond\lib\test\test_codecs.py", line 436, in test_incremental_surrogatepass
    self.assertEqual(dec.decode(data[i:], True), '\uD901')
AssertionError: '' != '\ud901'
+ \ud901
History
Date User Action Args
2019-05-08 21:19:21Paul Monsonsetrecipients: + Paul Monson, paul.moore, vstinner, tim.golden, methane, zach.ware, serhiy.storchaka, eryksun, steve.dower
2019-05-08 21:19:21Paul Monsonsetmessageid: <1557350361.78.0.817418105962.issue36778@roundup.psfhosted.org>
2019-05-08 21:19:21Paul Monsonlinkissue36778 messages
2019-05-08 21:19:21Paul Monsoncreate