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
fcac9282
Commit
fcac9282
authored
Jan 18, 2009
by
Dag Sverre Seljebotn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refnanny: Disable in nogil functions
parent
f4e84e98
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
12 deletions
+23
-12
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+13
-11
Cython/Runtime/build.sh
Cython/Runtime/build.sh
+2
-1
Cython/Runtime/refnanny.pyx
Cython/Runtime/refnanny.pyx
+8
-0
No files found.
Cython/Compiler/Nodes.py
View file @
fcac9282
...
...
@@ -1068,7 +1068,8 @@ class FuncDefNode(StatNode, BlockNode):
# ----- Automatic lead-ins for certain special functions
if
is_getbuffer_slot
:
self
.
getbuffer_init
(
code
)
code
.
put_setup_refcount_context
(
self
.
entry
.
name
)
if
not
lenv
.
nogil
:
code
.
put_setup_refcount_context
(
self
.
entry
.
name
)
# ----- Fetch arguments
self
.
generate_argument_parsing_code
(
env
,
code
)
# If an argument is assigned to in the body, we must
...
...
@@ -1183,17 +1184,18 @@ class FuncDefNode(StatNode, BlockNode):
# code.putln("/* TODO: decref scope object */")
# ----- Return
# This code is duplicated in ModuleNode.generate_module_init_func
default_retval
=
self
.
return_type
.
default_value
err_val
=
self
.
error_value
()
if
err_val
is
None
and
default_retval
:
err_val
=
default_retval
if
self
.
return_type
.
is_pyobject
:
code
.
put_xgiveref
(
self
.
return_type
.
as_pyobject
(
Naming
.
retval_cname
))
if
not
lenv
.
nogil
:
default_retval
=
self
.
return_type
.
default_value
err_val
=
self
.
error_value
()
if
err_val
is
None
and
default_retval
:
err_val
=
default_retval
if
self
.
return_type
.
is_pyobject
:
code
.
put_xgiveref
(
self
.
return_type
.
as_pyobject
(
Naming
.
retval_cname
))
code
.
put_finish_refcount_context
(
self
.
pos
,
self
.
entry
.
qualified_name
,
Naming
.
retval_cname
,
err_val
)
code
.
put_finish_refcount_context
(
self
.
pos
,
self
.
entry
.
qualified_name
,
Naming
.
retval_cname
,
err_val
)
if
not
self
.
return_type
.
is_void
:
code
.
putln
(
"return %s;"
%
Naming
.
retval_cname
)
...
...
Cython/Runtime/build.sh
View file @
fcac9282
# Temporary hacky script, should be replaced
# with distutils-based solution.
PYTHONINC
=
/local/include/python2.5
#PYTHONINC=/local/include/python2.5
PYTHONINC
=
/usr/include/python2.5
python ../../cython.py refnanny.pyx
gcc
-shared
-pthread
-fPIC
-fwrapv
-O2
-Wall
\
...
...
Cython/Runtime/refnanny.pyx
View file @
fcac9282
from
python_ref
cimport
Py_INCREF
,
Py_DECREF
cimport
python_exc
as
exc
loglevel
=
0
reflog
=
[]
...
...
@@ -69,6 +71,12 @@ cdef public void __Pyx_Refnanny_DECREF(void* ctx, object obj, int lineno):
Py_DECREF
(
obj
)
cdef
public
int
__Pyx_Refnanny_FinishContext
(
void
*
ctx
)
except
-
1
:
cdef
exc
.
PyObject
*
type
,
*
value
,
*
tb
if
exc
.
PyErr_Occurred
():
exc
.
PyErr_Fetch
(
&
type
,
&
value
,
&
tb
)
Py_DECREF
(
<
object
>
type
);
Py_DECREF
(
<
object
>
value
);
Py_DECREF
(
<
object
>
tb
)
print
"cleared!"
print
(
exc
.
PyErr_Occurred
()
==
NULL
)
obj
=
<
object
>
ctx
try
:
obj
.
end
()
...
...
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