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
Boxiang Sun
cython
Commits
345db432
Commit
345db432
authored
Sep 13, 2010
by
Lisandro Dalcin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix vtable slot filling to silent strict aliasing warnings in Py2
parent
901903e8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
9 deletions
+0
-9
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+0
-9
No files found.
Cython/Compiler/ModuleNode.py
View file @
345db432
...
...
@@ -2117,7 +2117,6 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
entry
for
entry
in
type
.
scope
.
cfunc_entries
if
entry
.
func_cname
]
if
c_method_entries
:
code
.
putln
(
'#if PY_MAJOR_VERSION >= 3'
)
for
meth_entry
in
c_method_entries
:
cast
=
meth_entry
.
type
.
signature_cast_string
()
code
.
putln
(
...
...
@@ -2126,14 +2125,6 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
meth_entry
.
cname
,
cast
,
meth_entry
.
func_cname
))
code
.
putln
(
'#else'
)
for
meth_entry
in
c_method_entries
:
code
.
putln
(
"*(void(**)(void))&%s.%s = (void(*)(void))%s;"
%
(
type
.
vtable_cname
,
meth_entry
.
cname
,
meth_entry
.
func_cname
))
code
.
putln
(
'#endif'
)
def
generate_typeptr_assignment_code
(
self
,
entry
,
code
):
# Generate code to initialise the typeptr of an extension
...
...
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