| Commit message (Expand) | Author | Age | Files | Lines |
* | As per python-dev discussion with Eli, properly document and publish dis.show... | Nick Coghlan | 2010-09-10 | 1 | -6/+2 |
|
|
* | Leave show_code out of __all__ and make it clear that its lack of documentati... | Nick Coghlan | 2010-09-10 | 1 | -1/+5 |
|
|
* | Fix dis.__all__ for new additions to module in 3.2(spotted by Eli Bendersky) | Nick Coghlan | 2010-09-10 | 1 | -2/+2 |
|
|
* | Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py co... | Nick Coghlan | 2010-08-17 | 1 | -4/+5 |
|
|
* | Issue 9147: Add dis.code_info() | Nick Coghlan | 2010-08-17 | 1 | -28/+44 |
|
|
* | Issue 6507: accept source strings directly in dis.dis(). Original patch by Da... | Nick Coghlan | 2010-07-03 | 1 | -2/+24 |
|
|
* | factor out constant | Benjamin Peterson | 2010-04-04 | 1 | -2/+3 |
|
|
* | Merged revisions 68116-68119,68121,68123-68127 via svnmerge from | Benjamin Peterson | 2009-01-01 | 1 | -1/+2 |
|
|
* | Fixed isinstance() check in dis.dis(). | Alexandre Vassalotti | 2008-06-04 | 1 | -1/+1 |
|
|
* | Removed the API to create unbound methods and simplified the API for bound me... | Christian Heimes | 2007-11-27 | 1 | -2/+2 |
|
|
* | Patch 1280, by Alexandre Vassalotti. | Guido van Rossum | 2007-10-19 | 1 | -11/+8 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -1/+1 |
|
|
* | Merged revisions 55795-55816 via svnmerge from | Guido van Rossum | 2007-06-07 | 1 | -1/+1 |
|
|
* | Merged revisions 55631-55794 via svnmerge from | Guido van Rossum | 2007-06-06 | 1 | -9/+5 |
|
|
* | Add a helper to display the various flags and components of code objects | Guido van Rossum | 2007-05-30 | 1 | -0/+56 |
|
|
* | Change all the function attributes from func_* -> __*__. This gets rid | Neal Norwitz | 2007-02-25 | 1 | -2/+2 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -37/+37 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -1/+1 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -1/+1 |
|
|
* | SF patch 1495675: Remove types.InstanceType and new.instance | Guido van Rossum | 2006-05-26 | 1 | -2/+0 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -8/+8 |
|
|
* | Fixed dis.disassemble_string(). | Armin Rigo | 2003-10-28 | 1 | -28/+24 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-03-07 | 1 | -39/+39 |
|
|
* | * separate opcode definitions into opcode.py | Skip Montanaro | 2003-02-27 | 1 | -178/+51 |
|
|
* | Further SET_LINENO reomval fixes. See comments in patch #587933. | Michael W. Hudson | 2002-08-30 | 1 | -1/+0 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-08-23 | 1 | -1/+1 |
|
|
* | This is my patch | Michael W. Hudson | 2002-08-15 | 1 | -4/+32 |
|
|
* | The opcode FOR_LOOP no longer exists. | Guido van Rossum | 2002-06-13 | 1 | -1/+0 |
|
|
* | The opcode YIELD_STMT was accidentally called YIELD_VALUE here. | Guido van Rossum | 2002-06-11 | 1 | -1/+1 |
|
|
* | Replaced boolean test with 'is None' | Raymond Hettinger | 2002-06-01 | 1 | -4/+4 |
|
|
* | SF #515009, delete global variable that was apparently used only | Neal Norwitz | 2002-02-11 | 1 | -0/+1 |
|
|
* | Add opcodes for floor division and true division (PEP 238) | Jeremy Hylton | 2001-08-29 | 1 | -0/+4 |
|
|
* | FOR_ITER is a jrel_op() not a plain old def_op() | Jeremy Hylton | 2001-08-28 | 1 | -1/+1 |
|
|
* | Merging the gen-branch into the main line, at Guido's direction. Yay! | Tim Peters | 2001-06-18 | 1 | -0/+1 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 1 | -0/+2 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -4/+3 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 1 | -0/+1 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -1/+15 |
|
|
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+4 |
|
|
* | Checking in a slight variation of Barry's patch 103303. | Guido van Rossum | 2001-01-19 | 1 | -10/+9 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -164/+164 |
|
|
* | Add missing opcodes. Thanx to jeremy for reminding me ;) | Thomas Wouters | 2000-08-24 | 1 | -1/+2 |
|
|
* | Support for augmented assignment in the UserList, UserDict, UserString and | Thomas Wouters | 2000-08-24 | 1 | -1/+11 |
|
|
* | Charles G. Waldman <cgw@fnal.gov>: | Fred Drake | 2000-08-24 | 1 | -1/+7 |
|
|
* | Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes. | Barry Warsaw | 2000-08-21 | 1 | -0/+2 |
|
|
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 1 | -1/+1 |
|
|
* | Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they | Thomas Wouters | 2000-08-11 | 1 | -2/+2 |
|
|
* | Michael Hudson: With the (cool!) new call syntax, the longest opcode | Guido van Rossum | 2000-03-30 | 1 | -1/+1 |
|
|
* | slightly modified version of Greg Ewing's extended call syntax patch | Jeremy Hylton | 2000-03-28 | 1 | -4/+8 |
|
|
* | Added a simple test program to disassemble a file, invoked as __main__. | Guido van Rossum | 2000-02-04 | 1 | -0/+27 |
|
|