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
f49e4461
Commit
f49e4461
authored
Jun 16, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some comments.
parent
82b1bf61
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+1
-2
No files found.
Cython/Compiler/Code.py
View file @
f49e4461
...
@@ -2194,10 +2194,9 @@ class CCodeWriter(object):
...
@@ -2194,10 +2194,9 @@ class CCodeWriter(object):
if
entry
.
is_special
:
if
entry
.
is_special
:
method_flags
+=
[
method_coexist
]
method_flags
+=
[
method_coexist
]
func_ptr
=
entry
.
func_cname
func_ptr
=
entry
.
func_cname
# Add
extra
casts, but try not to shadow real warnings.
# Add
required
casts, but try not to shadow real warnings.
cast
=
'__Pyx_PyCFunctionFast'
if
'METH_FASTCALL'
in
method_flags
else
'PyCFunction'
cast
=
'__Pyx_PyCFunctionFast'
if
'METH_FASTCALL'
in
method_flags
else
'PyCFunction'
if
'METH_KEYWORDS'
in
method_flags
:
if
'METH_KEYWORDS'
in
method_flags
:
# Need an extra cast
cast
+=
'WithKeywords'
cast
+=
'WithKeywords'
if
cast
!=
'PyCFunction'
:
if
cast
!=
'PyCFunction'
:
func_ptr
=
'(void*)(%s)%s'
%
(
cast
,
func_ptr
)
func_ptr
=
'(void*)(%s)%s'
%
(
cast
,
func_ptr
)
...
...
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