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
7d95dd2e
Commit
7d95dd2e
authored
Jan 22, 2022
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Keep utility code names across type specialisations and show it in the C file instead of "None".
parent
9f28d7d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+5
-1
No files found.
Cython/Compiler/Code.py
View file @
7d95dd2e
...
...
@@ -501,9 +501,11 @@ class UtilityCode(UtilityCodeBase):
def
specialize
(
self
,
pyrex_type
=
None
,
**
data
):
# Dicts aren't hashable...
name
=
self
.
name
if
pyrex_type
is
not
None
:
data
[
'type'
]
=
pyrex_type
.
empty_declaration_code
()
data
[
'type_name'
]
=
pyrex_type
.
specialization_name
()
name
=
"%s[%s]"
%
(
name
,
data
[
'type_name'
])
key
=
tuple
(
sorted
(
data
.
items
()))
try
:
return
self
.
_cache
[
key
]
...
...
@@ -519,7 +521,9 @@ class UtilityCode(UtilityCodeBase):
self
.
none_or_sub
(
self
.
init
,
data
),
self
.
none_or_sub
(
self
.
cleanup
,
data
),
requires
,
self
.
proto_block
)
self
.
proto_block
,
name
,
)
self
.
specialize_list
.
append
(
s
)
return
s
...
...
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