Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
cython
Commits
f80fe6d7
Commit
f80fe6d7
authored
12 years ago
by
Stefan Behnel
Browse files
Options
Download
Email Patches
Plain Diff
fix crash due to moved utility code (apparently in untested code)
parent
b0a428d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+1
-1
No files found.
Cython/Compiler/Nodes.py
View file @
f80fe6d7
...
...
@@ -6514,7 +6514,7 @@ class FromImportStatNode(StatNode):
if
name
==
'*'
:
for
_
,
entry
in
env
.
entries
.
items
():
if
not
entry
.
is_type
and
entry
.
type
.
is_extension_type
:
env
.
use_utility_code
(
ExprNodes
.
t
ype
_t
est
_utility_code
)
env
.
use_utility_code
(
UtilityCode
.
load_cached
(
"ExtT
ype
T
est
"
,
"ObjectHandling.c"
)
)
break
else
:
entry
=
env
.
lookup
(
target
.
name
)
...
...
This diff is collapsed.
Click to expand it.
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