projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1afca47
)
Another necessary "optimization."
author
Robert Bradshaw
<robertwb@math.washington.edu>
Sat, 31 Jul 2010 18:47:06 +0000
(11:47 -0700)
committer
Robert Bradshaw
<robertwb@math.washington.edu>
Sat, 31 Jul 2010 18:47:06 +0000
(11:47 -0700)
Cython/Compiler/Main.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Main.py
b/Cython/Compiler/Main.py
index 26c71c07b4a40c96fa6e6e69623740a28614267a..51d9e0747fd86322a7f4ad1e5ac02c5295122c3a 100644
(file)
--- a/
Cython/Compiler/Main.py
+++ b/
Cython/Compiler/Main.py
@@
-138,7
+138,7
@@
class Context(object):
_align_function_definitions,
MarkClosureVisitor(self),
ConstantFolding(),
-
#
FlattenInListTransform(),
+
#
FlattenInListTransform(),
WithTransform(self),
DecoratorTransform(self),
AnalyseDeclarationsTransform(self),
@@
-148,7
+148,7
@@
class Context(object):
EarlyReplaceBuiltinCalls(self), ## Necessary?
MarkAssignments(self),
MarkOverflowingArithmetic(self),
-
#
TransformBuiltinMethods(self),
+ TransformBuiltinMethods(self),
IntroduceBufferAuxiliaryVars(self),
_check_c_declarations,
AnalyseExpressionsTransform(self),