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 larry, ncoghlan, rfk, rhettinger
Date 2013-11-03.15:03:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383491012.63.0.815723672299.issue19378@psf.upfronthosting.co.za>
In-reply-to
Content
While working on this, I noticed a number of other issues with the dis API additions for Python 3.4 from issue 11816. Specifically:

- the file output redirection API didn't work in some cases that resulted in calls to other disassembly functions
- Bytecode.show_info() replicates a bad module level API that shouldn't be perpetuated
- Bytecode.display_code() is better converted to a dis() method that returns a string rather than writing directly to an output stream
History
Date User Action Args
2013-11-03 15:03:32ncoghlansetrecipients: + ncoghlan, rhettinger, larry, rfk
2013-11-03 15:03:32ncoghlansetmessageid: <1383491012.63.0.815723672299.issue19378@psf.upfronthosting.co.za>
2013-11-03 15:03:32ncoghlanlinkissue19378 messages
2013-11-03 15:03:32ncoghlancreate