projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86f38e6
)
reenable optimisations to prevent their tests from failing, tiny cleanup
author
Stefan Behnel
<scoder@users.berlios.de>
Mon, 9 Aug 2010 17:42:49 +0000
(19:42 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Mon, 9 Aug 2010 17:42:49 +0000
(19:42 +0200)
Cython/Compiler/Main.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Main.py
b/Cython/Compiler/Main.py
index 539cada38f49446afa816d2c63f89a5437dcc752..208b575cd8e1239b140953f1ae9ceefe0c1898f5 100644
(file)
--- a/
Cython/Compiler/Main.py
+++ b/
Cython/Compiler/Main.py
@@
-155,12
+155,10
@@
class Context(object):
OptimizeBuiltinCalls(self), ## Necessary?
IterationTransform(),
SwitchTransform(),
-
#
DropRefcountingTransform(),
-
#
FinalOptimizePhase(self),
+ DropRefcountingTransform(),
+ FinalOptimizePhase(self),
GilCheck(),
#ClearResultCodes(self),
- #SpecialFunctions(self),
- #CreateClosureClasses(context),
]
def create_pyx_pipeline(self, options, result, py=False):