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
388e3b84
Commit
388e3b84
authored
Jul 04, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore C89 compatibility for MSVC by fixing a "code before declaration" issue.
parent
d6fac46c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+2
-2
No files found.
Cython/Compiler/Nodes.py
View file @
388e3b84
...
@@ -3518,8 +3518,8 @@ class DefNodeWrapper(FuncDefNode):
...
@@ -3518,8 +3518,8 @@ class DefNodeWrapper(FuncDefNode):
# Assign nargs variable as len(args), but avoid an "unused" warning in the few cases where we don't need it.
# Assign nargs variable as len(args), but avoid an "unused" warning in the few cases where we don't need it.
if
self
.
signature_has_generic_args
():
if
self
.
signature_has_generic_args
():
code
.
putln
(
"
const Py_ssize_t %s = PyTuple_GET_SIZE(%s); (void)%s
;"
%
(
code
.
putln
(
"
CYTHON_UNUSED const Py_ssize_t %s = PyTuple_GET_SIZE(%s)
;"
%
(
Naming
.
nargs_cname
,
Naming
.
args_cname
,
Naming
.
nargs_cname
))
Naming
.
nargs_cname
,
Naming
.
args_cname
))
def
generate_argument_parsing_code
(
self
,
env
,
code
):
def
generate_argument_parsing_code
(
self
,
env
,
code
):
# Generate fast equivalent of PyArg_ParseTuple call for
# Generate fast equivalent of PyArg_ParseTuple call for
...
...
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