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
Gwenaël Samain
cython
Commits
cfcf8605
Commit
cfcf8605
authored
Mar 28, 2009
by
Dag Sverre Seljebotn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused reference to result() in analysis
parent
9f4e7b8f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+0
-1
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+0
-1
No files found.
Cython/Compiler/Nodes.py
View file @
cfcf8605
...
@@ -2529,7 +2529,6 @@ class PyClassDefNode(ClassDefNode):
...
@@ -2529,7 +2529,6 @@ class PyClassDefNode(ClassDefNode):
self
.
classobj
.
analyse_expressions
(
env
)
self
.
classobj
.
analyse_expressions
(
env
)
genv
=
env
.
global_scope
()
genv
=
env
.
global_scope
()
cenv
=
self
.
scope
cenv
=
self
.
scope
cenv
.
class_dict_cname
=
self
.
dict
.
result
()
# TODO newtemps -- move to code generation
self
.
body
.
analyse_expressions
(
cenv
)
self
.
body
.
analyse_expressions
(
cenv
)
self
.
target
.
analyse_target_expression
(
env
,
self
.
classobj
)
self
.
target
.
analyse_target_expression
(
env
,
self
.
classobj
)
self
.
dict
.
release_temp
(
env
)
self
.
dict
.
release_temp
(
env
)
...
...
Cython/Compiler/Symtab.py
View file @
cfcf8605
...
@@ -1182,7 +1182,6 @@ class ClassScope(Scope):
...
@@ -1182,7 +1182,6 @@ class ClassScope(Scope):
class
PyClassScope
(
ClassScope
):
class
PyClassScope
(
ClassScope
):
# Namespace of a Python class.
# Namespace of a Python class.
#
#
# class_dict_cname string C variable holding class dict
# class_obj_cname string C variable holding class object
# class_obj_cname string C variable holding class object
is_py_class_scope
=
1
is_py_class_scope
=
1
...
...
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