1. 36c6fa9 bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079) (GH-16464) by Gregory P. Smith · 4 years, 10 months ago
  2. 466e18e Remove unused imports in tests (GH-14518) (GH-14520) by Victor Stinner · 5 years ago
  3. 7cd581a bpo-37269: Correctly optimise conditionals with constant booleans (GH-14071) by Miss Islington (bot) · 5 years ago
  4. 5282b3b bpo-37213: Handle negative line deltas correctly in the peephole optimizer (GH-13969) by Miss Islington (bot) · 5 years ago
  5. 3f7e9aa bpo-32925: Optimized iterating and containing test for literal lists (GH-5842) by Serhiy Storchaka · 6 years ago
  6. 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 6 years ago
  7. 2e3f570 bpo-30416: Protect the optimizer during constant folding. (#4860) by Serhiy Storchaka · 7 years ago
  8. 70d28a1 Remove unused imports. by Serhiy Storchaka · 8 years ago
  9. 51d8c52 Replace noop constant statement with expression by Victor Stinner · 8 years ago
  10. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  11. d624517 Issue #11816: switch test_peepholer to bytecode_helper by Nick Coghlan · 11 years ago
  12. 570942e #5057: null merge with 3.2 (only add tests). by Ezio Melotti · 12 years ago
  13. 6c5f521 #5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. by Ezio Melotti · 12 years ago
  14. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  15. e1adeeb #5057: Merge with 3.2. by Ezio Melotti · 13 years ago
  16. 71e84a6 #5057: Merge with 3.1. by Ezio Melotti · 13 years ago
  17. 2df6a93 Issue #5057: fix a bug in the peepholer that led to non-portable pyc files between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. "\U00012345"[0]). by Ezio Melotti · 13 years ago
  18. 7c9e803 Issue #11244: Remove outdated peepholer check that was preventing the peepholer from folding -0 and -0.0. Thanks Eugene Toder for the patch. by Mark Dickinson · 13 years ago
  19. 29dcaad Issue 11510: Fix BUILD_SET optimizer bug. by Raymond Hettinger · 13 years ago
  20. 5bd75b8 whitespace fix by Raymond Hettinger · 13 years ago
  21. f932f74 whitespace fix by Raymond Hettinger · 13 years ago
  22. 0661e91 Issue 11510: Fix BUILD_SET optimizer bug. by Raymond Hettinger · 13 years ago
  23. 17b880a Issue #11244: The peephole optimizer is now able to constant-fold by Antoine Pitrou · 13 years ago
  24. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  25. b7fbcd3 Issue #6690: Optimize the bytecode for expressions such as `x in {1, 2, 3}`, by Antoine Pitrou · 15 years ago
  26. af7adad Peephole constant folding had missed UNARY_POSITIVE. by Raymond Hettinger · 15 years ago
  27. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  28. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  29. 9de7ec7 http://bugs.python.org/issue4715 by Jeffrey Yasskin · 15 years ago
  30. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  31. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  32. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  33. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  34. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  35. 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 17 years ago
  36. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  37. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  38. 8b6de13 UNARY_CONVERT can no longer be generated, so remove a test for the peepholer by Brett Cannon · 18 years ago
  39. afd842f Teach the peepholer to fold unary operations on constants. by Raymond Hettinger · 19 years ago
  40. 64d904b Remove set conversion optimization test (backed out of Python/compile.c in rev. by Brett Cannon · 19 years ago
  41. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 19 years ago
  42. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 19 years ago
  43. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 19 years ago
  44. 922b3e2 Remove test for BINARY_DIVIDE. by Raymond Hettinger · 20 years ago
  45. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 20 years ago
  46. 5dec096 Maintain peepholer's cumlc invariant by updating the running total by Raymond Hettinger · 20 years ago
  47. 23109ef SF bug #1053819: Segfault in tuple_of_constants by Raymond Hettinger · 20 years ago
  48. 2c31a05 SF patch #1031667: Fold tuples of constants into a single constant by Raymond Hettinger · 20 years ago
  49. 66cb018 Whitespace normalization. by Tim Peters · 20 years ago
  50. fd2d1f7 SF Patch #1013667: Cleanup Peepholer Output by Raymond Hettinger · 20 years ago