From: Stefan Behnel Date: Fri, 30 May 2008 05:45:58 +0000 (+0200) Subject: cleanup X-Git-Tag: 0.9.8rc1~11^2~10^2~10^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3d4b6c39cd6d57751f10b4424f0a84de755bb00c;p=cython.git cleanup --- diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index 8b7cbedd..74536dab 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -424,7 +424,6 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): code.putln("#endif") code.putln("#if PY_MAJOR_VERSION >= 3") - code.putln(" #include \"stringobject.h\"") # Py3 compat header for PyString_*() code.putln(" #define PyBaseString_Type PyUnicode_Type") code.putln(" #define PyInt_Type PyLong_Type") code.putln(" #define PyInt_Check(op) PyLong_Check(op)")