summaryrefslogtreecommitdiff
path: root/Lib/dis.py
Commit message (Expand)AuthorAgeFilesLines
* fix dis on new style classes #8310Benjamin Peterson2010-04-041-4/+4
* use isinstanceBenjamin Peterson2009-05-101-5/+5
* #4222: document dis.findlabels() and dis.findlinestarts() andGeorg Brandl2009-01-011-1/+2
* 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
* Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes.Barry Warsaw2000-08-211-0/+2
* Apply SF patch #101135, adding 'import module as m' and 'from module importThomas Wouters2000-08-171-1/+1
* Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since theyThomas Wouters2000-08-111-2/+2
* Michael Hudson: With the (cool!) new call syntax, the longest opcodeGuido van Rossum2000-03-301-1/+1
* slightly modified version of Greg Ewing's extended call syntax patchJeremy Hylton2000-03-281-4/+8
* Added a simple test program to disassemble a file, invoked as __main__.Guido van Rossum2000-02-041-0/+27
* Clarify why we define disco. Suggested by Andrew Dalke.Guido van Rossum1999-05-031-1/+1
* Get rid of some obsolete opcodes.Guido van Rossum1998-07-071-5/+0
* Added docstrings (contributed by Martin von Loewis).Guido van Rossum1997-11-181-1/+13
* Modernized for 1.5Guido van Rossum1997-05-091-5/+8
* Support disassembly of a variety of objects through dis.dis().Guido van Rossum1997-03-141-0/+17
* Of course, when the type of the argument to dis() is unsupported, itGuido van Rossum1997-01-171-1/+1
* More user friedly interface:Guido van Rossum1997-01-171-10/+25
* Merge several mods:Guido van Rossum1997-01-161-2/+12
* Show names of locals in disco (Ka-Ping Yee)Guido van Rossum1996-09-121-0/+6
* Zapped obsolete opcode LOAD_GLOBALS.Guido van Rossum1996-09-101-1/+0
* Added BUILD_SLICE opcode.Guido van Rossum1996-07-301-0/+1
* New opcodes BINARY_POWER, RAISE_VARARGS, CALL_FUNCTION, MAKE_FUNCTIONGuido van Rossum1996-07-211-0/+5
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-011-1/+3
* * string.py: added rindex(), rfind(); changed index() to interpretGuido van Rossum1993-11-081-2/+2
* Updated because of new opcodes introduced for "fast" local variables.Guido van Rossum1993-03-301-2/+9
* New == syntaxGuido van Rossum1992-01-011-2/+2
* New opcodes: UNPACK_ARG, STORE_GLOBAL, DELETE_GLOBAL, LOAD_LOCAL, LOAD_GLOBALGuido van Rossum1991-12-161-2/+7