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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
cab3760c
Commit
cab3760c
authored
Jun 06, 2012
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #132 from tito/fix-win32
Fix compilation issues on windows (got this error from 0.16 already)
parents
ded57336
b1871496
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
Cython/Utility/CythonFunction.c
Cython/Utility/CythonFunction.c
+4
-1
No files found.
Cython/Utility/CythonFunction.c
View file @
cab3760c
...
...
@@ -438,7 +438,10 @@ static PyObject * __Pyx_CyFunction_Call(PyObject *func, PyObject *arg, PyObject
return
NULL
;
}
#else
#define __Pyx_CyFunction_Call PyCFunction_Call
static
PyObject
*
__PyCFunction_Call
(
PyObject
*
func
,
PyObject
*
arg
,
PyObject
*
kw
)
{
return
PyCFunction_Call
(
func
,
arg
,
kw
);
}
#define __Pyx_CyFunction_Call __PyCFunction_Call
#endif
static
PyTypeObject
__pyx_CyFunctionType_type
=
{
...
...
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