summaryrefslogtreecommitdiffstats
path: root/Lib/dis.py
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | should raise TypeError, not ValueError...
* More user friedly interface:Guido van Rossum1997-01-171-10/+25
| | | | | | | | | | | dis() still disassembles the last frame of the lats stack trace. dis(x) disassembles x, which may be a code object, function, or method. disassemble(co, [lasti]) disassembles a code object; the lasti argument is now optional. disco(...) is an alias for disassemble(...), for backward compatibility.
* Merge several mods:Guido van Rossum1997-01-161-2/+12
| | | | | | | | - add opcodes BINARY_LSHIFT ... BINARY_OR - remove RESERVE_FAST - Skip M's suggestion for displaying which comparison operator is meant
* 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
| | | | | | | | | | | negative start indices starting from the right. * ftplib.py: debug() -> set_debuglevel(); change demo to use __init__(). * os.py: added execl, execlp, and execvp. * lambda.py: removed (now that we have built-in map, reduce, bagof, lambda) * test_b{1,2}.py, testall.out: added tests for bagof, lambda, map, reduce * commands.py: use os, not posix * test_grammar.py: make it easy to disable non-portable int overflow tests * dis.py: don't abuse range()
* 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
|
* Initial revisionGuido van Rossum1990-12-261-0/+176