summaryrefslogtreecommitdiff
path: root/Lib/dis.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* The opcode FOR_LOOP no longer exists.Guido van Rossum2002-06-131-1/+0
* The opcode YIELD_STMT was accidentally called YIELD_VALUE here.Guido van Rossum2002-06-111-1/+1
* Replaced boolean test with 'is None'Raymond Hettinger2002-06-011-4/+4
* SF #515009, delete global variable that was apparently used onlyNeal Norwitz2002-02-111-0/+1
* Add opcodes for floor division and true division (PEP 238)Jeremy Hylton2001-08-291-0/+4
* FOR_ITER is a jrel_op() not a plain old def_op()Jeremy Hylton2001-08-281-1/+1
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-181-0/+1
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-0/+2
* String method conversion.Eric S. Raymond2001-02-091-4/+3
* Allow 'continue' inside 'try' clauseJeremy Hylton2001-02-011-0/+1
* PEP 227 implementationJeremy Hylton2001-01-251-1/+15
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+4
* Checking in a slight variation of Barry's patch 103303.Guido van Rossum2001-01-191-10/+9
* Whitespace normalization.Tim Peters2001-01-141-164/+164
* Add missing opcodes. Thanx to jeremy for reminding me ;)Thomas Wouters2000-08-241-1/+2
* Support for augmented assignment in the UserList, UserDict, UserString andThomas Wouters2000-08-241-1/+11
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-241-1/+7