68 Commits (bbe2f60b3c19ecaa02ca07be14474eaacfcb59a0)

Author SHA1 Message Date
Nick Coghlan e8814fbb32 As per python-dev discussion with Eli, properly document and publish dis.show_code 16 years ago
Nick Coghlan c02adca999 Leave show_code out of __all__ and make it clear that its lack of documentation is deliberate 16 years ago
Nick Coghlan 7646f7ef4a Fix dis.__all__ for new additions to module in 3.2(spotted by Eli Bendersky) 16 years ago
Nick Coghlan 09c8123e6f Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler flag values before resorting to defining its own 16 years ago
Nick Coghlan eae2da1da7 Issue 9147: Add dis.code_info() 16 years ago
Nick Coghlan 5c8b54eb04 Issue 6507: accept source strings directly in dis.dis(). Original patch by Daniel Urban 16 years ago
Benjamin Peterson 6ef9a844f2 factor out constant 16 years ago
Benjamin Peterson 75edad0502 Merged revisions 68116-68119,68121,68123-68127 via svnmerge from 17 years ago
Alexandre Vassalotti 267d417377 Fixed isinstance() check in dis.dis(). 18 years ago
Christian Heimes ff737954f3 Removed the API to create unbound methods and simplified the API for bound methods. The signature is PyMethod_New(func, instance). 18 years ago
Guido van Rossum 75a902db78 Patch 1280, by Alexandre Vassalotti. 18 years ago
Collin Winter ce36ad8a46 Raise statement normalization in Lib/. 19 years ago
Guido van Rossum 1325790b93 Merged revisions 55795-55816 via svnmerge from 19 years ago
Guido van Rossum e7ba495627 Merged revisions 55631-55794 via svnmerge from 19 years ago
Guido van Rossum 3e1b85ead1 Add a helper to display the various flags and components of code objects 19 years ago
Neal Norwitz 221085de89 Change all the function attributes from func_* -> __*__. This gets rid 19 years ago
Guido van Rossum be19ed77dd Fix most trivially-findable print statements. 19 years ago
Guido van Rossum e2a383d062 Rip out 'long' and 'L'-suffixed integer literals. 19 years ago
Guido van Rossum b940e113bf SF patch 1631942 by Collin Winter: 19 years ago
Guido van Rossum 65810fee5e SF patch 1495675: Remove types.InstanceType and new.instance 20 years ago
Walter Dörwald 70a6b49821 Replace backticks with repr() or "%r" 22 years ago
Armin Rigo 9c8f7eafca Fixed dis.disassemble_string(). 23 years ago
Tim Peters 669454e9dc Whitespace normalization. 23 years ago
Skip Montanaro 19c6ba3664 * separate opcode definitions into opcode.py 23 years ago
Michael W. Hudson 53d58bb369 Further SET_LINENO reomval fixes. See comments in patch #587933. 24 years ago
Tim Peters 280488b9a3 Whitespace normalization. 24 years ago
Michael W. Hudson dd32a91cc0 This is my patch 24 years ago
Guido van Rossum fea59e7f76 The opcode FOR_LOOP no longer exists. 24 years ago
Guido van Rossum 9f709bf9a1 The opcode YIELD_STMT was accidentally called YIELD_VALUE here. 24 years ago
Raymond Hettinger 0f4940c0a8 Replaced boolean test with 'is None' 24 years ago
Neal Norwitz aa38aa5435 SF #515009, delete global variable that was apparently used only 24 years ago
Jeremy Hylton 96d68d57be Add opcodes for floor division and true division (PEP 238) 25 years ago
Jeremy Hylton 318e167e98 FOR_ITER is a jrel_op() not a plain old def_op() 25 years ago
Tim Peters 5ca576ed0a Merging the gen-branch into the main line, at Guido's direction. Yay! 25 years ago
Guido van Rossum 59d1d2b434 Iterators phase 1. This comprises: 25 years ago
Eric S. Raymond 373c55e510 String method conversion. 25 years ago
Jeremy Hylton 3faa52ecc4 Allow 'continue' inside 'try' clause 25 years ago
Jeremy Hylton a39414b15c PEP 227 implementation 25 years ago
Skip Montanaro e99d5ea25b added __all__ lists to a number of Python modules 25 years ago
Guido van Rossum fc53c13dd5 Checking in a slight variation of Barry's patch 103303. 25 years ago
Tim Peters 88869f9787 Whitespace normalization. 25 years ago
Thomas Wouters 6af3b37021 Add missing opcodes. Thanx to jeremy for reminding me ;) 26 years ago
Thomas Wouters 104a7bcc28 Support for augmented assignment in the UserList, UserDict, UserString and 26 years ago
Fred Drake ef8ace3a6f Charles G. Waldman <cgw@fnal.gov>: 26 years ago
Barry Warsaw 203da6dfe4 Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes. 26 years ago
Thomas Wouters 5215225ea1 Apply SF patch #101135, adding 'import module as m' and 'from module import 26 years ago
Thomas Wouters 0be5aab04d Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they 26 years ago
Guido van Rossum d30dedca27 Michael Hudson: With the (cool!) new call syntax, the longest opcode 26 years ago
Jeremy Hylton 7690151c7e slightly modified version of Greg Ewing's extended call syntax patch 26 years ago
Guido van Rossum 1fdae12c93 Added a simple test program to disassemble a file, invoked as __main__. 26 years ago