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
429936a2
Commit
429936a2
authored
Aug 10, 2018
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert PEP-489 behaviour, but keep error raising code to make it easy to try both.
parent
17d28b34
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
9 deletions
+16
-9
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+13
-8
Cython/Utility/ModuleSetupCode.c
Cython/Utility/ModuleSetupCode.c
+3
-1
No files found.
Cython/Compiler/ModuleNode.py
View file @
429936a2
...
@@ -2326,14 +2326,19 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
...
@@ -2326,14 +2326,19 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
put_declare_refcount_context
()
code
.
put_declare_refcount_context
()
code
.
putln
(
"#if CYTHON_PEP489_MULTI_PHASE_INIT"
)
code
.
putln
(
"#if CYTHON_PEP489_MULTI_PHASE_INIT"
)
# Hack: enforce single initialisation.
# Hack: enforce single initialisation.
# Most extension modules simply can't deal with it, and Cython isn't ready either.
code
.
putln
(
"if (%s && %s == %s) return 0;"
%
(
# See issues listed here: https://docs.python.org/3/c-api/init.html#sub-interpreter-support
Naming
.
module_cname
,
code
.
putln
(
"if (%s) {"
%
Naming
.
module_cname
)
Naming
.
module_cname
,
code
.
putln
(
'PyErr_SetString(PyExc_RuntimeError,'
Naming
.
pymodinit_module_arg
,
' "Module
\
'
%s
\
'
has already been imported. Re-initialisation is not supported");'
%
))
env
.
module_name
)
# # Most extension modules simply can't deal with it, and Cython isn't ready either.
code
.
putln
(
"return -1;"
)
# # See issues listed here: https://docs.python.org/3/c-api/init.html#sub-interpreter-support
code
.
putln
(
"}"
)
# code.putln("if (%s) {" % Naming.module_cname)
# code.putln('PyErr_SetString(PyExc_RuntimeError,'
# ' "Module \'%s\' has already been imported. Re-initialisation is not supported");' %
# env.module_name)
# code.putln("return -1;")
# code.putln("}")
code
.
putln
(
"#elif PY_MAJOR_VERSION >= 3"
)
code
.
putln
(
"#elif PY_MAJOR_VERSION >= 3"
)
# Hack: enforce single initialisation also on reimports under different names on Python 3 (with PEP 3121/489).
# Hack: enforce single initialisation also on reimports under different names on Python 3 (with PEP 3121/489).
code
.
putln
(
"if (%s) return __Pyx_NewRef(%s);"
%
(
code
.
putln
(
"if (%s) return __Pyx_NewRef(%s);"
%
(
...
...
Cython/Utility/ModuleSetupCode.c
View file @
429936a2
...
@@ -178,7 +178,9 @@
...
@@ -178,7 +178,9 @@
#define CYTHON_FAST_PYCALL 1
#define CYTHON_FAST_PYCALL 1
#endif
#endif
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
#define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000)
// Disabled for now. Most extension modules simply can't deal with it, and Cython isn't ready either.
// See issues listed here: https://docs.python.org/3/c-api/init.html#sub-interpreter-support
#define CYTHON_PEP489_MULTI_PHASE_INIT (0 && PY_VERSION_HEX >= 0x03050000)
#endif
#endif
#ifndef CYTHON_USE_TP_FINALIZE
#ifndef CYTHON_USE_TP_FINALIZE
#define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1)
#define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1)
...
...
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