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 ncoghlan
Recipients ncoghlan, python-dev, serhiy.storchaka, xiang.zhang, yselivanov
Date 2016-04-18.05:29:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460957368.32.0.656300363132.issue26733@psf.upfronthosting.co.za>
In-reply-to
Content
Looking at the history of the dis module, I'd now class this as a bug fix for 3.5+ - it looks like dis.dis gained the ability to disassemble static and class methods as a side-effect of the removal of bound methods in Python 3 (see https://hg.python.org/cpython/rev/48af6375207e ) but because it was a side effect, the additional changes needed to also handle them when disassembling a class were missed.
History
Date User Action Args
2016-04-18 05:29:28ncoghlansetrecipients: + ncoghlan, python-dev, serhiy.storchaka, yselivanov, xiang.zhang
2016-04-18 05:29:28ncoghlansetmessageid: <1460957368.32.0.656300363132.issue26733@psf.upfronthosting.co.za>
2016-04-18 05:29:28ncoghlanlinkissue26733 messages
2016-04-18 05:29:27ncoghlancreate