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
ef88275d
Commit
ef88275d
authored
May 19, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forgotten part of last commit
parent
63eabf72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+5
-5
No files found.
Cython/Compiler/ExprNodes.py
View file @
ef88275d
...
@@ -736,9 +736,9 @@ class StringNode(ConstNode):
...
@@ -736,9 +736,9 @@ class StringNode(ConstNode):
return
self
.
entry
.
cname
return
self
.
entry
.
cname
class
KeywordName
Node
(
ConstNode
):
class
IdentifierString
Node
(
ConstNode
):
# A
keyword in a Python function call: a string that behaves like
# A
Python string that behaves like an identifier, e.g. for
#
an identifier
#
keyword arguments in a call, or for imported names
type
=
PyrexTypes
.
py_object_type
type
=
PyrexTypes
.
py_object_type
def
analyse_types
(
self
,
env
):
def
analyse_types
(
self
,
env
):
...
@@ -1067,8 +1067,8 @@ class ImportNode(ExprNode):
...
@@ -1067,8 +1067,8 @@ class ImportNode(ExprNode):
# Implements result =
# Implements result =
# __import__(module_name, globals(), None, name_list)
# __import__(module_name, globals(), None, name_list)
#
#
# module_name
StringNode
dotted name of module
# module_name
IdentifierStringNode
dotted name of module
# name_list ListNode or None list of names to be imported
# name_list ListNode or None
list of names to be imported
subexprs
=
[
'module_name'
,
'name_list'
]
subexprs
=
[
'module_name'
,
'name_list'
]
...
...
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