1. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  2. da8d72c bpo-12458: Fix line numbers for multiline expressions. (GH-8774) by Serhiy Storchaka · 6 years ago
  3. 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 6 years ago
  4. e2732d3 bpo-32970: Improve disassembly of the MAKE_FUNCTION instruction. (GH-5937) by Serhiy Storchaka · 6 years ago
  5. 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 6 years ago
  6. 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 7 years ago
  7. d4864c6 bpo-24340: Fix estimation of the code stack size. (#5076) by Serhiy Storchaka · 7 years ago
  8. fe2b56a bpo-31183: `dis` now handles coroutines & async generators (GH-3077) by syncosmic · 7 years ago
  9. 1efbf92 bpo-11822: Improve disassembly to show embedded code objects. (#1844) by Serhiy Storchaka · 7 years ago
  10. d90045f bpo-22352: Adjust widths in the output of dis.dis() for large line numbers and (#1153) by Serhiy Storchaka · 7 years ago
  11. 70d28a1 Remove unused imports. by Serhiy Storchaka · 8 years ago
  12. dd102f7 Issue #28317: The disassembler now decodes FORMAT_VALUE argument. by Serhiy Storchaka · 8 years ago
  13. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 8 years ago
  14. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  15. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  16. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
  17. b0f80b0 Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode. by Serhiy Storchaka · 8 years ago
  18. 585c93d Issue #26733: Disassembling a class now disassembles class and static methods. by Serhiy Storchaka · 8 years ago
  19. 247763d Issue #26733: Fixed formatting line numbers in test_dis. by Serhiy Storchaka · 8 years ago
  20. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  21. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  22. 7ced53c merge 3.4 (#23048) by Benjamin Peterson · 10 years ago
  23. 3cda0ed pop the loop block even for infinite while loops (closes #23048) by Benjamin Peterson · 10 years ago
  24. e7811fc Closes #11471: avoid generating a JUMP_FORWARD instruction at the end of an if-block if there is no else-clause. by Antoine Pitrou · 10 years ago
  25. efd5df9 Issue #21947: handle generator-iterator objects in dis by Nick Coghlan · 10 years ago
  26. bb4b7c1 Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been by Zachary Ware · 11 years ago
  27. e80e806 Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been by Zachary Ware · 11 years ago
  28. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  29. 7ef00ff Normalize whitespace by Zachary Ware · 11 years ago
  30. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  31. 50c48b8 Close #17916: dis.Bytecode based replacement for distb by Nick Coghlan · 11 years ago
  32. 95887b7 Remove incorrect comment from dis tests by Nick Coghlan · 11 years ago
  33. 90b8e7d Close #19378: address flaws in the new dis module APIs by Nick Coghlan · 11 years ago
  34. 353d450 merge 3.3 (#19117) by Benjamin Peterson · 11 years ago
  35. 52010b4 fix duplicate test names in test_dis (closes #19117) by Benjamin Peterson · 11 years ago
  36. b39fd0c Issue #11816: multiple improvements to the dis module by Nick Coghlan · 11 years ago
  37. 7448220 Issue #11823: disassembly now shows argument counts on calls with keyword args by Alexander Belopolsky · 12 years ago
  38. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  39. 27fe226 Another test_dis dict order dependency. by Georg Brandl · 12 years ago
  40. a108227 Fix test_dis dependency on dict order. by Georg Brandl · 12 years ago
  41. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  42. 76f7f4d excise the remains of STOP_CODE, which hasn't done anything useful for years by Benjamin Peterson · 13 years ago
  43. 47afc2a PyErr_Print can leave sys.last_traceback hanging around; kill it by Benjamin Peterson · 13 years ago
  44. c217a4b should use 'is' here by Benjamin Peterson · 13 years ago
  45. d6afe72 improve dis test coverage (closes #11559) by Benjamin Peterson · 13 years ago
  46. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  47. ebbf63b #9964: Fix failure of test_dis under -OO. by Georg Brandl · 14 years ago
  48. 46e6380 Another attempt at pacifying the windows buildbots by ignoring all the variable information in the dis.code_info tests by Nick Coghlan · 14 years ago
  49. 77203ad Ignore the exact ID value for the nested function in the dis.code_info tests by Nick Coghlan · 14 years ago
  50. eae2da1 Issue 9147: Add dis.code_info() by Nick Coghlan · 14 years ago
  51. 5c8b54e Issue 6507: accept source strings directly in dis.dis(). Original patch by Daniel Urban by Nick Coghlan · 14 years ago
  52. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  53. f289ae6 Merged revisions 67818 via svnmerge from by Antoine Pitrou · 16 years ago
  54. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  55. 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 16 years ago
  56. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  57. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  58. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  59. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  60. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  61. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  62. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  63. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  64. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  65. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  66. 10be2ea SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. Add it back. by Neal Norwitz · 18 years ago
  67. 83a8c39 test_bug_1333982(): This one must fail under -O. by Tim Peters · 19 years ago
  68. 51abbc7 Fix Armin's bug 1333982. He found it, he didn't created it :-) by Neal Norwitz · 19 years ago
  69. fd2d1f7 SF Patch #1013667: Cleanup Peepholer Output by Raymond Hettinger · 20 years ago
  70. 1bc2fdd Delete comment my last checkin rendered obsolete. by Michael W. Hudson · 21 years ago
  71. 26848a3 Use Tim's suggestion to fix by Michael W. Hudson · 21 years ago
  72. eabafeb This test relied on significant trailing whitespace in a string literal. Evil. by Tim Peters · 21 years ago
  73. add0ccc simple test case for dis module by Skip Montanaro · 21 years ago