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