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 kayhayen
Recipients kayhayen, pablogsal, pitrou, serhiy.storchaka, vstinner, yselivanov
Date 2018-07-06.09:03:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530867824.08.0.56676864532.issue34042@psf.upfronthosting.co.za>
In-reply-to
Content
Hello,

so it's harmless and it explains the other reference counting issue, where a change in call convention could make a reference counting bug show or go away:

codecs.open(TESTFN, encoding='cp949')
This was showing it, where as
codecs.open(TESTFN, "rb", 'cp949')

was not. With all the difference being a dictionary passed into a function call or not. I am now assuming that getting your fix this will also go away. Caused me a bit of head scratching already.

If you could do what you often you, and make this what distributions like Debian pull from, it would be good enough in terms of release for me, as it blocks Nuitka tests from passing on them.

Yours,
Kay
History
Date User Action Args
2018-07-06 09:03:44kayhayensetrecipients: + kayhayen, pitrou, vstinner, serhiy.storchaka, yselivanov, pablogsal
2018-07-06 09:03:44kayhayensetmessageid: <1530867824.08.0.56676864532.issue34042@psf.upfronthosting.co.za>
2018-07-06 09:03:44kayhayenlinkissue34042 messages
2018-07-06 09:03:43kayhayencreate