Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
1847ab3d
Commit
1847ab3d
authored
Jun 02, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverted temp name changes - wrong 'fix'
parent
caf82802
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+1
-1
Cython/Compiler/TreeFragment.py
Cython/Compiler/TreeFragment.py
+1
-2
No files found.
Cython/Compiler/ParseTreeTransforms.py
View file @
1847ab3d
...
@@ -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)
...
...
Cython/Compiler/TreeFragment.py
View file @
1847ab3d
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment