[issue34042] Reference loss for local classes

Kay Hayen report at bugs.python.org
Fri Jul 6 05:03:44 EDT 2018


Kay Hayen <kay.hayen at gmail.com> added the comment:

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

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue34042>
_______________________________________


More information about the Python-bugs-list mailing list