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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
198a902f
Commit
198a902f
authored
Nov 16, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inheritance fix
parent
da85212a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
Cython/Compiler/UtilNodes.py
Cython/Compiler/UtilNodes.py
+2
-3
No files found.
Cython/Compiler/UtilNodes.py
View file @
198a902f
...
...
@@ -7,7 +7,7 @@
import
Nodes
import
ExprNodes
from
Nodes
import
Node
from
ExprNodes
import
ExprNode
from
ExprNodes
import
Atomic
ExprNode
class
TempHandle
(
object
):
temp
=
None
...
...
@@ -17,9 +17,8 @@ class TempHandle(object):
def
ref
(
self
,
pos
):
return
TempRefNode
(
pos
,
handle
=
self
,
type
=
self
.
type
)
class
TempRefNode
(
ExprNode
):
class
TempRefNode
(
Atomic
ExprNode
):
# handle TempHandle
subexprs
=
[]
def
analyse_types
(
self
,
env
):
assert
self
.
type
==
self
.
handle
.
type
...
...
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