aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/dis.py
Commit message (Collapse)AuthorAge
...
* PEP 227 implementationJeremy Hylton2001-01-25
| | | | | Track changes to new opcodes. Add hasfree list that applies to all ops that use the closure.
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-20
| | | | | | | | added test script and expected output file as well this closes patch 103297. __all__ attributes will be added to other modules without first submitting a patch, just adding the necessary line to the test script to verify more-or-less correct implementation.
* 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
| | | | | | rfc822 (Addresslist) modules. Also a preliminary testcase for augmented assignment, which should actually be merged with the test_class testcase I added last week.
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-24
| | | | | | | | | Add the EXTENDED_ARG opcode to the virtual machine, allowing 32-bit arguments to opcodes instead of being forced to stick to the 16-bit limit. This is especially useful for machine-generated code, which can be too long for the SET_LINENO parameter to fit into 16 bits. This closes the implementation portion of SourceForge patch #100893.
* 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
| | | | | | | | name as n'. By doing some twists and turns, "as" is not a reserved word. There is a slight change in semantics for 'from module import name' (it will now honour the 'global' keyword) but only in cases that are explicitly undocumented.
* Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since theyThomas Wouters2000-08-11
| | | | | | | did the same anyway. I'm not sure what to do with Tools/compiler/compiler/* -- that isn't part of distutils, is it ? Should it try to be compatible with old bytecode version ?
* Michael Hudson: With the (cool!) new call syntax, the longest opcodeGuido van Rossum2000-03-30
| | | | | name is much longer, which fouls up dis's formatting slightly; this is a "fix" for that.
* slightly modified version of Greg Ewing's extended call syntax patchJeremy Hylton2000-03-28
| | | | | | | | | | | | | | | | | | | | | | | executive summary: Instead of typing 'apply(f, args, kwargs)' you can type 'f(*arg, **kwargs)'. Some file-by-file details follow. Grammar/Grammar: simplify varargslist, replacing '*' '*' with '**' add * & ** options to arglist Include/opcode.h & Lib/dis.py: define three new opcodes CALL_FUNCTION_VAR CALL_FUNCTION_KW CALL_FUNCTION_VAR_KW Python/ceval.c: extend TypeError "keyword parameter redefined" message to include the name of the offending keyword reindent CALL_FUNCTION using four spaces add handling of sequences and dictionaries using extend calls fix function import_from to use PyErr_Format
* 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
| | | | should raise TypeError, not ValueError...
* More user friedly interface:Guido van Rossum1997-01-17
| | | | | | | | | | | 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-16
| | | | | | | | - 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-12
|
* Zapped obsolete opcode LOAD_GLOBALS.Guido van Rossum1996-09-10
|
* Added BUILD_SLICE opcode.Guido van Rossum1996-07-30
|
* New opcodes BINARY_POWER, RAISE_VARARGS, CALL_FUNCTION, MAKE_FUNCTIONGuido van Rossum1996-07-21
|
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-01
|
* * string.py: added rindex(), rfind(); changed index() to interpretGuido van Rossum1993-11-08
| | | | | | | | | | | 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-30
|
* New == syntaxGuido van Rossum1992-01-01
|
* New opcodes: UNPACK_ARG, STORE_GLOBAL, DELETE_GLOBAL, LOAD_LOCAL, LOAD_GLOBALGuido van Rossum1991-12-16
|
* Initial revisionGuido van Rossum1990-12-26