diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2013-08-06 09:24:45 +0200 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2013-08-06 09:24:45 +0200 |
commit | 45a17f1aa020a25b04ca85eb5f463707fae49ee6 (patch) | |
tree | f8f1d4faa5e9cac60121c1c8d86a99d1ec6debeb /Cython/Utility/ModuleSetupCode.c | |
parent | abe914c4d6912174a28d9b80bc7f6ca89dc346cf (diff) | |
download | cython-45a17f1aa020a25b04ca85eb5f463707fae49ee6.tar.gz |
revert actual tp_finalize() usages, needs more thought
Diffstat (limited to 'Cython/Utility/ModuleSetupCode.c')
-rw-r--r-- | Cython/Utility/ModuleSetupCode.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Cython/Utility/ModuleSetupCode.c b/Cython/Utility/ModuleSetupCode.c index 8065ab9c5..c0c59f61d 100644 --- a/Cython/Utility/ModuleSetupCode.c +++ b/Cython/Utility/ModuleSetupCode.c @@ -128,10 +128,6 @@ #define Py_TPFLAGS_HAVE_VERSION_TAG 0 #endif -#if PY_VERSION_HEX < 0x030400a1 && !defined(Py_TPFLAGS_HAVE_FINALIZE) - #define Py_TPFLAGS_HAVE_FINALIZE 0 -#endif - /* new Py3.3 unicode type (PEP 393) */ #if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) #define CYTHON_PEP393_ENABLED 1 |