Author: Wim Lavrijsen <[email protected]> Branch: reflex-support Changeset: r59757:a3856c2e0535 Date: 2013-01-04 15:55 -0800 http://bitbucket.org/pypy/pypy/changeset/a3856c2e0535/
Log: never release GIL with CINT backend diff --git a/pypy/module/cppyy/capi/cint_capi.py b/pypy/module/cppyy/capi/cint_capi.py --- a/pypy/module/cppyy/capi/cint_capi.py +++ b/pypy/module/cppyy/capi/cint_capi.py @@ -36,8 +36,8 @@ ts_reflect = False ts_call = False -ts_memory = 'auto' -ts_helper = 'auto' +ts_memory = False +ts_helper = False # force loading in global mode of core libraries, rather than linking with # them as PyPy uses various version of dlopen in various places; note that _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
