Commit 89c37c3c authored by Craig Citro's avatar Craig Citro

Minor cleanups

parent de75062c
......@@ -37,7 +37,8 @@ class CompileError(PyrexError):
# Deprecated and withdrawn in 2.6:
# self.message = message
if position:
pos_str = u"%s:%d:%d: " % (position[0].get_description(), position[1], position[2])
pos_str = u"%s:%d:%d: " % (position[0].get_description(),
position[1], position[2])
cont = context(position)
else:
pos_str = u""
......
......@@ -146,9 +146,9 @@ class Context(object):
DropRefcountingTransform(),
FinalOptimizePhase(self),
GilCheck(),
# ClearResultCodes(self),
# SpecialFunctions(self),
# CreateClosureClasses(context),
#ClearResultCodes(self),
#SpecialFunctions(self),
#CreateClosureClasses(context),
]
def create_pyx_pipeline(self, options, result, py=False):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment