1. dd102f7 Issue #28317: The disassembler now decodes FORMAT_VALUE argument. by Serhiy Storchaka · 8 years ago
  2. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 8 years ago
  3. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 8 years ago
  4. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  5. b0f80b0 Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode. by Serhiy Storchaka · 8 years ago
  6. 3e99fde Issue #26881: The modulefinder module now supports extended opcode arguments. by Serhiy Storchaka · 8 years ago
  7. 02d9f5e Issue #26881: The modulefinder module now supports extended opcode arguments. by Serhiy Storchaka · 8 years ago
  8. 8b9eefc Issue #26733: Disassembling a class now disassembles class and static methods. by Serhiy Storchaka · 8 years ago
  9. 585c93d Issue #26733: Disassembling a class now disassembles class and static methods. by Serhiy Storchaka · 8 years ago
  10. f3914eb co_lnotab supports negative line number delta by Victor Stinner · 8 years ago
  11. 5b798ab Issue #24878: Add docstrings to selected namedtuples by Raymond Hettinger · 9 years ago
  12. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  13. efd5df9 Issue #21947: handle generator-iterator objects in dis by Nick Coghlan · 10 years ago
  14. 50c48b8 Close #17916: dis.Bytecode based replacement for distb by Nick Coghlan · 11 years ago
  15. 90b8e7d Close #19378: address flaws in the new dis module APIs by Nick Coghlan · 11 years ago
  16. 0956689 Close #18538: ``python -m dis`` now uses argparse. by Nick Coghlan · 11 years ago
  17. 6e6c6ac #18796: improve documentation of the file argument of dis.show_code. Initial patch by Vajrasky Kok. by Ezio Melotti · 11 years ago
  18. b39fd0c Issue #11816: multiple improvements to the dis module by Nick Coghlan · 11 years ago
  19. 7448220 Issue #11823: disassembly now shows argument counts on calls with keyword args by Alexander Belopolsky · 12 years ago
  20. e8814fb As per python-dev discussion with Eli, properly document and publish dis.show_code by Nick Coghlan · 14 years ago
  21. c02adca Leave show_code out of __all__ and make it clear that its lack of documentation is deliberate by Nick Coghlan · 14 years ago
  22. 7646f7e Fix dis.__all__ for new additions to module in 3.2(spotted by Eli Bendersky) by Nick Coghlan · 14 years ago
  23. 09c8123 Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler flag values before resorting to defining its own by Nick Coghlan · 14 years ago
  24. eae2da1 Issue 9147: Add dis.code_info() by Nick Coghlan · 14 years ago
  25. 5c8b54e Issue 6507: accept source strings directly in dis.dis(). Original patch by Daniel Urban by Nick Coghlan · 14 years ago
  26. 6ef9a84 factor out constant by Benjamin Peterson · 14 years ago
  27. 75edad0 Merged revisions 68116-68119,68121,68123-68127 via svnmerge from by Benjamin Peterson · 15 years ago
  28. 267d417 Fixed isinstance() check in dis.dis(). by Alexandre Vassalotti · 16 years ago
  29. ff73795 Removed the API to create unbound methods and simplified the API for bound methods. The signature is PyMethod_New(func, instance). by Christian Heimes · 17 years ago
  30. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  31. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  32. 1325790 Merged revisions 55795-55816 via svnmerge from by Guido van Rossum · 17 years ago
  33. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  34. 3e1b85e Add a helper to display the various flags and components of code objects by Guido van Rossum · 17 years ago
  35. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  36. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  37. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  38. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  39. 65810fe SF patch 1495675: Remove types.InstanceType and new.instance (Collin Winter) by Guido van Rossum · 18 years ago
  40. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  41. 9c8f7ea Fixed dis.disassemble_string(). Added dis.findlinestarts(). SF bug 811294 by Armin Rigo · 21 years ago
  42. 669454e Whitespace normalization. by Tim Peters · 21 years ago
  43. 19c6ba3 * separate opcode definitions into opcode.py by Skip Montanaro · 21 years ago
  44. 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 22 years ago
  45. 280488b Whitespace normalization. by Tim Peters · 22 years ago
  46. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  47. fea59e7 The opcode FOR_LOOP no longer exists. by Guido van Rossum · 22 years ago
  48. 9f709bf The opcode YIELD_STMT was accidentally called YIELD_VALUE here. by Guido van Rossum · 22 years ago
  49. 0f4940c Replaced boolean test with 'is None' by Raymond Hettinger · 22 years ago
  50. aa38aa5 SF #515009, delete global variable that was apparently used only in a for loop. by Neal Norwitz · 22 years ago
  51. 96d68d5 Add opcodes for floor division and true division (PEP 238) by Jeremy Hylton · 23 years ago
  52. 318e167 FOR_ITER is a jrel_op() not a plain old def_op() by Jeremy Hylton · 23 years ago
  53. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  54. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  55. 373c55e String method conversion. by Eric S. Raymond · 23 years ago
  56. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 23 years ago
  57. a39414b PEP 227 implementation by Jeremy Hylton · 23 years ago
  58. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  59. fc53c13 Checking in a slight variation of Barry's patch 103303. by Guido van Rossum · 23 years ago
  60. 88869f9 Whitespace normalization. by Tim Peters · 23 years ago
  61. 6af3b37 Add missing opcodes. Thanx to jeremy for reminding me ;) by Thomas Wouters · 24 years ago
  62. 104a7bc Support for augmented assignment in the UserList, UserDict, UserString and by Thomas Wouters · 24 years ago
  63. ef8ace3 Charles G. Waldman <cgw@fnal.gov>: by Fred Drake · 24 years ago
  64. 203da6d Add the new PRINT_ITEM_TO and PRINT_NEWLINE_TO opcodes. by Barry Warsaw · 24 years ago
  65. 5215225 Apply SF patch #101135, adding 'import module as m' and 'from module import by Thomas Wouters · 24 years ago
  66. 0be5aab Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they by Thomas Wouters · 24 years ago
  67. d30dedc Michael Hudson: With the (cool!) new call syntax, the longest opcode by Guido van Rossum · 24 years ago
  68. 7690151 slightly modified version of Greg Ewing's extended call syntax patch by Jeremy Hylton · 24 years ago
  69. 1fdae12 Added a simple test program to disassemble a file, invoked as __main__. by Guido van Rossum · 24 years ago
  70. 1cc2b9d Clarify why we define disco. Suggested by Andrew Dalke. by Guido van Rossum · 25 years ago
  71. 9d865e1 Get rid of some obsolete opcodes. by Guido van Rossum · 26 years ago
  72. 421c224 Added docstrings (contributed by Martin von Loewis). by Guido van Rossum · 27 years ago
  73. d0f2372 Modernized for 1.5 by Guido van Rossum · 27 years ago
  74. 18aef3c Support disassembly of a variety of objects through dis.dis(). by Guido van Rossum · 27 years ago
  75. 00f86e6 Of course, when the type of the argument to dis() is unsupported, it by Guido van Rossum · 27 years ago
  76. bd30795 More user friedly interface: by Guido van Rossum · 27 years ago
  77. d0bc9cb Merge several mods: by Guido van Rossum · 27 years ago
  78. 934a4ce Show names of locals in disco (Ka-Ping Yee) by Guido van Rossum · 28 years ago
  79. 151fcfd Zapped obsolete opcode LOAD_GLOBALS. by Guido van Rossum · 28 years ago
  80. 56a7338 Added BUILD_SLICE opcode. by Guido van Rossum · 28 years ago
  81. 6e21ceb New opcodes BINARY_POWER, RAISE_VARARGS, CALL_FUNCTION, MAKE_FUNCTION by Guido van Rossum · 28 years ago
  82. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  83. e65cce5 * string.py: added rindex(), rfind(); changed index() to interpret by Guido van Rossum · 31 years ago
  84. 8379ed5 Updated because of new opcodes introduced for "fast" local variables. by Guido van Rossum · 31 years ago
  85. bdfcfcc New == syntax by Guido van Rossum · 32 years ago
  86. a594fab New opcodes: UNPACK_ARG, STORE_GLOBAL, DELETE_GLOBAL, LOAD_LOCAL, LOAD_GLOBAL by Guido van Rossum · 32 years ago
  87. 217a5fa Initial revision by Guido van Rossum · 33 years ago