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