remove Py_UNICODE from standard imports as it is now a builtin type
authorStefan Behnel <scoder@users.berlios.de>
Thu, 22 Apr 2010 10:57:28 +0000 (12:57 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 22 Apr 2010 10:57:28 +0000 (12:57 +0200)
Cython/Includes/cpython/long.pxd
Cython/Includes/cpython/unicode.pxd

index 31134d6dd96f019456d4a4d36caec7c23bf51d24..145ce8c6d19d742df0833686adeb11ef6ca05010 100644 (file)
@@ -1,4 +1,3 @@
-from cpython.unicode cimport Py_UNICODE
 
 cdef extern from "Python.h":
     ctypedef long long PY_LONG_LONG
index 2a1f14f356b31df95b992c3f4c508b1bd9705e18..053c0b3fc4b7e2151ebd3b2ec5e1722401fe2fb1 100644 (file)
@@ -1,6 +1,4 @@
 cdef extern from *:
-    ctypedef unsigned int Py_UNICODE
-
     # Return true if the object o is a Unicode object or an instance
     # of a Unicode subtype. Changed in version 2.2: Allowed subtypes
     # to be accepted.