aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/dis.py
Commit message (Expand)AuthorAge
* Merged revisions 68116-68119,68121,68123-68127 via svnmerge fromBenjamin Peterson2009-01-01
* Fixed isinstance() check in dis.dis().Alexandre Vassalotti2008-06-04
* Removed the API to create unbound methods and simplified the API for bound me...Christian Heimes2007-11-27
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-19
* Raise statement normalization in Lib/.Collin Winter2007-08-30
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-07
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-06
* Add a helper to display the various flags and components of code objectsGuido van Rossum2007-05-30
* Change all the function attributes from func_* -> __*__. This gets ridNeal Norwitz2007-02-25
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-15
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-10
* SF patch 1495675: Remove types.InstanceType and new.instanceGuido van Rossum2006-05-26
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-12
* Fixed dis.disassemble_string().Armin Rigo2003-10-28
* Whitespace normalization.Tim Peters2003-03-07
* * separate opcode definitions into opcode.pySkip Montanaro2003-02-27
* Further SET_LINENO reomval fixes. See comments in patch #587933.Michael W. Hudson2002-08-30
* Whitespace normalization.Tim Peters2002-08-23
* This is my patchMichael W. Hudson2002-08-15
* The opcode FOR_LOOP no longer exists.Guido van Rossum2002-06-13
* The opcode YIELD_STMT was accidentally called YIELD_VALUE here.Guido van Rossum2002-06-11
* Replaced boolean test with 'is None'Raymond Hettinger2002-06-01
* SF #515009, delete global variable that was apparently used onlyNeal Norwitz2002-02-11
* Add opcodes for floor division and true division (PEP 238)Jeremy Hylton2001-08-29
* FOR_ITER is a jrel_op() not a plain old def_op()Jeremy Hylton2001-08-28
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-18
* Iterators phase 1. This comprises:Guido van Rossum2001-04-20
* String method conversion.Eric S. Raymond2001-02-09
* Allow 'continue' inside 'try' clauseJeremy Hylton2001-02-01
* PEP 227 implementationJeremy Hylton2001-01-25
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-20
* Checking in a slight variation of Barry's patch 103303.Guido van Rossum2001-01-19
* Whitespace normalization.Tim Peters2001-01-14
* Add missing opcodes. Thanx to jeremy for reminding me ;)Thomas Wouters2000-08-24
* Support for augmented assignment in the UserList, UserDict, UserString andThomas Wouters2000-08-24
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-24
* Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes.Barry Warsaw2000-08-21
* Apply SF patch #101135, adding 'import module as m' and 'from module importThomas Wouters2000-08-17
* Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since theyThomas Wouters2000-08-11
* Michael Hudson: With the (cool!) new call syntax, the longest opcodeGuido van Rossum2000-03-30
* slightly modified version of Greg Ewing's extended call syntax patchJeremy Hylton2000-03-28
* Added a simple test program to disassemble a file, invoked as __main__.Guido van Rossum2000-02-04
* Clarify why we define disco. Suggested by Andrew Dalke.Guido van Rossum1999-05-03
* Get rid of some obsolete opcodes.Guido van Rossum1998-07-07
* Added docstrings (contributed by Martin von Loewis).Guido van Rossum1997-11-18
* Modernized for 1.5Guido van Rossum1997-05-09
* Support disassembly of a variety of objects through dis.dis().Guido van Rossum1997-03-14
* Of course, when the type of the argument to dis() is unsupported, itGuido van Rossum1997-01-17
* More user friedly interface:Guido van Rossum1997-01-17