Commit 1847ab3d authored by Stefan Behnel's avatar Stefan Behnel

reverted temp name changes - wrong 'fix'

parent caf82802
......@@ -863,7 +863,7 @@ class WithTransform(CythonTransform, SkipDeclarations):
def visit_WithStatNode(self, node):
# TODO: Cleanup badly needed
TemplateTransform.temp_name_counter += 1
handle = EncodedString("__tmpvar_%d" % TemplateTransform.temp_name_counter)
handle = "__tmpvar_%d" % TemplateTransform.temp_name_counter
self.visitchildren(node, ['body'])
excinfo_temp = NameNode(node.pos, name=handle)#TempHandle(Builtin.tuple_type)
......
......@@ -14,7 +14,6 @@ from ExprNodes import NameNode
import Parsing
import Main
import UtilNodes
import StringEncoding
"""
Support for parsing strings into code trees.
......@@ -121,7 +120,7 @@ class TemplateTransform(VisitorTransform):
temphandles = []
for temp in temps:
TemplateTransform.temp_name_counter += 1
handle = StringEncoding.EncodedString("__tmpvar_%d" % TemplateTransform.temp_name_counter)
handle = "__tmpvar_%d" % TemplateTransform.temp_name_counter
# handle = UtilNodes.TempHandle(PyrexTypes.py_object_type)
tempmap[temp] = handle
# temphandles.append(handle)
......
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