diff options
author | Stefan Behnel <scoder@users.berlios.de> | 2008-05-30 07:45:58 +0200 |
---|---|---|
committer | Stefan Behnel <scoder@users.berlios.de> | 2008-05-30 07:45:58 +0200 |
commit | 3d4b6c39cd6d57751f10b4424f0a84de755bb00c (patch) | |
tree | 1e703851f1ab6618a38c200c9667459b95dd7a0f /Cython/Compiler/ModuleNode.py | |
parent | 7bf952b2193bc5445f474655ca063516f4a4d717 (diff) | |
download | cython-3d4b6c39cd6d57751f10b4424f0a84de755bb00c.tar.gz |
cleanup
Diffstat (limited to 'Cython/Compiler/ModuleNode.py')
-rw-r--r-- | Cython/Compiler/ModuleNode.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index 8b7cbeddb..74536dab3 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)") |