1. 71e84a6 #5057: Merge with 3.1. by Ezio Melotti · 14 years ago
  2. 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 · 14 years ago
  3. 29dcaad Issue 11510: Fix BUILD_SET optimizer bug. by Raymond Hettinger · 14 years ago
  4. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  5. b7fbcd3 Issue #6690: Optimize the bytecode for expressions such as `x in {1, 2, 3}`, by Antoine Pitrou · 15 years ago
  6. af7adad Peephole constant folding had missed UNARY_POSITIVE. by Raymond Hettinger · 15 years ago
  7. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  8. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  9. 9de7ec7 http://bugs.python.org/issue4715 by Jeffrey Yasskin · 16 years ago
  10. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  11. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  12. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  13. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 18 years ago
  14. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
  15. 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 18 years ago
  16. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  17. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  18. 8b6de13 UNARY_CONVERT can no longer be generated, so remove a test for the peepholer by Brett Cannon · 18 years ago
  19. afd842f Teach the peepholer to fold unary operations on constants. by Raymond Hettinger · 20 years ago
  20. 64d904b Remove set conversion optimization test (backed out of Python/compile.c in rev. by Brett Cannon · 20 years ago
  21. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 20 years ago
  22. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 20 years ago
  23. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 20 years ago
  24. 922b3e2 Remove test for BINARY_DIVIDE. by Raymond Hettinger · 20 years ago
  25. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 20 years ago
  26. 5dec096 Maintain peepholer's cumlc invariant by updating the running total by Raymond Hettinger · 20 years ago
  27. 23109ef SF bug #1053819: Segfault in tuple_of_constants by Raymond Hettinger · 20 years ago
  28. 2c31a05 SF patch #1031667: Fold tuples of constants into a single constant by Raymond Hettinger · 20 years ago
  29. 66cb018 Whitespace normalization. by Tim Peters · 20 years ago
  30. fd2d1f7 SF Patch #1013667: Cleanup Peepholer Output by Raymond Hettinger · 20 years ago