diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-12-01 01:43:42 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-12-01 01:43:42 (GMT) |
commit | df9460f8dcbbe802614350c37a4a478148841c14 (patch) | |
tree | 71ac60080ddd9e1df5c25f04f811d1ea42925b6e /Include/object.h | |
parent | c6df622c4cc9be85764ab55e9e0ac230fe487efb (diff) | |
download | cpython-df9460f8dcbbe802614350c37a4a478148841c14.zip cpython-df9460f8dcbbe802614350c37a4a478148841c14.tar.gz cpython-df9460f8dcbbe802614350c37a4a478148841c14.tar.bz2 |
Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.
Diffstat (limited to 'Include/object.h')
-rw-r--r-- | Include/object.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/object.h b/Include/object.h index 05d8d39..afbc68d 100644 --- a/Include/object.h +++ b/Include/object.h @@ -829,9 +829,6 @@ they can have object code that is not dependent on Python compilation flags. PyAPI_FUNC(void) Py_IncRef(PyObject *); PyAPI_FUNC(void) Py_DecRef(PyObject *); -PyAPI_DATA(PyTypeObject) PyNone_Type; -PyAPI_DATA(PyTypeObject) PyNotImplemented_Type; - /* _Py_NoneStruct is an object of undefined type which can be used in contexts where NULL (nil) is not suitable (since NULL often means 'error'). |