Commit aa3dfd5f authored by Lisandro Dalcin's avatar Lisandro Dalcin

unimportant fix in cleanup code for Py23 sets support

parent bd8aea50
...@@ -267,8 +267,8 @@ static int __Pyx_Py23SetsImport(void) { return 0; } ...@@ -267,8 +267,8 @@ static int __Pyx_Py23SetsImport(void) { return 0; }
init = put_py23_set_init_utility_code, init = put_py23_set_init_utility_code,
cleanup = """ cleanup = """
#if PY_VERSION_HEX < 0x02040000 #if PY_VERSION_HEX < 0x02040000
Py_XDECREF(__Pyx_PySet_Type); Py_XDECREF(__Pyx_PySet_Type); __Pyx_PySet_Type = NULL;
Py_XDECREF(__Pyx_PyFrozenSet_Type); Py_XDECREF(__Pyx_PyFrozenSet_Type); __Pyx_PyFrozenSet_Type = NULL;
#endif /* < Py2.4 */ #endif /* < Py2.4 */
""") """)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment