1. c18cc0e #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 · 13 years ago
  2. c283a85 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. u"\U00012345"[0]). by Ezio Melotti · 14 years ago
  3. 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
  4. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  5. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
  6. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
  7. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  8. 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 16 years ago
  9. 20e1199 Fix embarrassing typo and fix constantification of None by Raymond Hettinger · 18 years ago
  10. cbeb687 Update the peephole optimizer to remove more dead code (jumps after returns) by Neal Norwitz · 19 years ago
  11. afd842f Teach the peepholer to fold unary operations on constants. by Raymond Hettinger · 20 years ago
  12. 64d904b Remove set conversion optimization test (backed out of Python/compile.c in rev. by Brett Cannon · 20 years ago
  13. 7fcb786 Adopt Skip's idea to optimize lists of constants in the context by Raymond Hettinger · 21 years ago
  14. a164574 Transform "x in (1,2,3)" to "x in frozenset([1,2,3])". by Raymond Hettinger · 21 years ago
  15. 9feb267 Do not fold a constant if a large sequence will result. by Raymond Hettinger · 21 years ago
  16. 922b3e2 Remove test for BINARY_DIVIDE. by Raymond Hettinger · 21 years ago
  17. c34f867 Teach the peephole optimizer to fold simple constant expressions. by Raymond Hettinger · 21 years ago
  18. 5dec096 Maintain peepholer's cumlc invariant by updating the running total by Raymond Hettinger · 21 years ago
  19. 23109ef SF bug #1053819: Segfault in tuple_of_constants by Raymond Hettinger · 21 years ago
  20. 2c31a05 SF patch #1031667: Fold tuples of constants into a single constant by Raymond Hettinger · 21 years ago
  21. 66cb018 Whitespace normalization. by Tim Peters · 21 years ago
  22. fd2d1f7 SF Patch #1013667: Cleanup Peepholer Output by Raymond Hettinger · 21 years ago