summaryrefslogtreecommitdiff
path: root/Lib/dis.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-31183: `dis` now handles coroutines & async generators (GH-3077)syncosmic2017-08-181-12/+30
* bpo-11822: Improve disassembly to show embedded code objects. (#1844)Serhiy Storchaka2017-06-111-6/+17
* bpo-22352: Adjust widths in the output of dis.dis() for large line numbers an...Serhiy Storchaka2017-04-191-7/+23
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-051-1/+1
* Issue #28317: The disassembler now decodes FORMAT_VALUE argument.Serhiy Storchaka2016-10-081-0/+9
* Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.Serhiy Storchaka2016-09-121-2/+0
* Rework CALL_FUNCTION* opcodesVictor Stinner2016-09-091-1/+1
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-0/+1
* Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.Serhiy Storchaka2016-05-241-22/+13
* Issue #26881: The modulefinder module now supports extended opcode arguments.Serhiy Storchaka2016-05-081-29/+26
|\
| * Issue #26881: The modulefinder module now supports extended opcode arguments.Serhiy Storchaka2016-05-081-29/+26
* | Issue #26733: Disassembling a class now disassembles class and static methods.Serhiy Storchaka2016-04-231-1/+2
|\ \ | |/
| * Issue #26733: Disassembling a class now disassembles class and static methods.Serhiy Storchaka2016-04-231-1/+2
* | co_lnotab supports negative line number deltaVictor Stinner2016-01-201-2/+5
* | Issue #24878: Add docstrings to selected namedtuplesRaymond Hettinger2015-08-171-0/+9
|/
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-0/+2
* Issue #21947: handle generator-iterator objects in disNick Coghlan2014-07-251-2/+6
* Close #17916: dis.Bytecode based replacement for distbNick Coghlan2013-11-231-2/+15
* Close #19378: address flaws in the new dis module APIsNick Coghlan2013-11-061-30/+42
* Close #18538: ``python -m dis`` now uses argparse.Nick Coghlan2013-08-251-19/+8
* #18796: improve documentation of the file argument of dis.show_code. Initial...Ezio Melotti2013-08-231-1/+4
* Issue #11816: multiple improvements to the dis moduleNick Coghlan2013-05-061-97/+238
* Issue #11823: disassembly now shows argument counts on calls with keyword argsAlexander Belopolsky2012-06-071-0/+6
* As per python-dev discussion with Eli, properly document and publish dis.show...Nick Coghlan2010-09-101-6/+2
* Leave show_code out of __all__ and make it clear that its lack of documentati...Nick Coghlan2010-09-101-1/+5
* Fix dis.__all__ for new additions to module in 3.2(spotted by Eli Bendersky)Nick Coghlan2010-09-101-2/+2
* Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py co...Nick Coghlan2010-08-171-4/+5
* Issue 9147: Add dis.code_info()Nick Coghlan2010-08-171-28/+44
* Issue 6507: accept source strings directly in dis.dis(). Original patch by Da...Nick Coghlan2010-07-031-2/+24
* factor out constantBenjamin Peterson2010-04-041-2/+3
* Merged revisions 68116-68119,68121,68123-68127 via svnmerge fromBenjamin Peterson2009-01-011-1/+2
* Fixed isinstance() check in dis.dis().Alexandre Vassalotti2008-06-041-1/+1
* Removed the API to create unbound methods and simplified the API for bound me...Christian Heimes2007-11-271-2/+2
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-191-11/+8
* Raise statement normalization in Lib/.Collin Winter2007-08-301-1/+1
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-1/+1
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-9/+5
* Add a helper to display the various flags and components of code objectsGuido van Rossum2007-05-301-0/+56
* Change all the function attributes from func_* -> __*__. This gets ridNeal Norwitz2007-02-251-2/+2
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-37/+37
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* SF patch 1495675: Remove types.InstanceType and new.instanceGuido van Rossum2006-05-261-2/+0
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-8/+8
* Fixed dis.disassemble_string().Armin Rigo2003-10-281-28/+24
* Whitespace normalization.Tim Peters2003-03-071-39/+39
* * separate opcode definitions into opcode.pySkip Montanaro2003-02-271-178/+51
* Further SET_LINENO reomval fixes. See comments in patch #587933.Michael W. Hudson2002-08-301-1/+0
* Whitespace normalization.Tim Peters2002-08-231-1/+1
* This is my patchMichael W. Hudson2002-08-151-4/+32