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
654b16a2
Commit
654b16a2
authored
Feb 03, 2009
by
Lisandro Dalcin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forgot to protect refnanny macro arguments in last commit
parent
2d24acc5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+6
-6
No files found.
Cython/Compiler/ModuleNode.py
View file @
654b16a2
...
...
@@ -2341,13 +2341,13 @@ typedef struct {
void* (*NewContext)(const char*, int);
int (*FinishContext)(void**);
} __Pyx_RefnannyAPIStruct;
static __Pyx_RefnannyAPIStruct
*
__Pyx_Refnanny = NULL;
static __Pyx_RefnannyAPIStruct
*
__Pyx_Refnanny = NULL;
#define __Pyx_ImportRefcountAPI(name)
\
(__Pyx_RefnannyAPIStruct*) PyCObject_Import((char *)name, (char *)
\
"
RefnannyAPI
\
"
)
#define __Pyx_INCREF(r) __Pyx_Refnanny->INCREF(__pyx_refchk, (
(PyObject*)
r), __LINE__)
#define __Pyx_DECREF(r) __Pyx_Refnanny->DECREF(__pyx_refchk, (
(PyObject*)
r), __LINE__)
#define __Pyx_GOTREF(r) __Pyx_Refnanny->GOTREF(__pyx_refchk, (
(PyObject*)
r), __LINE__)
#define __Pyx_GIVEREF(r) __Pyx_Refnanny->GIVEREF(__pyx_refchk, (
(PyObject*)
r), __LINE__)
(__Pyx_RefnannyAPIStruct
*) PyCObject_Import((char *)name, (char *)
\
"
RefnannyAPI
\
"
)
#define __Pyx_INCREF(r) __Pyx_Refnanny->INCREF(__pyx_refchk, (
PyObject *)(
r), __LINE__)
#define __Pyx_DECREF(r) __Pyx_Refnanny->DECREF(__pyx_refchk, (
PyObject *)(
r), __LINE__)
#define __Pyx_GOTREF(r) __Pyx_Refnanny->GOTREF(__pyx_refchk, (
PyObject *)(
r), __LINE__)
#define __Pyx_GIVEREF(r) __Pyx_Refnanny->GIVEREF(__pyx_refchk, (
PyObject *)(
r), __LINE__)
#define __Pyx_XDECREF(r) if((r) == NULL) ; else __Pyx_DECREF(r)
#define __Pyx_SetupRefcountContext(name)
\
void* __pyx_refchk = __Pyx_Refnanny->NewContext((name), __LINE__)
...
...
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