summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2013-12-01 01:43:42 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2013-12-01 01:43:42 (GMT)
commitdf9460f8dcbbe802614350c37a4a478148841c14 (patch)
tree71ac60080ddd9e1df5c25f04f811d1ea42925b6e /Include/object.h
parentc6df622c4cc9be85764ab55e9e0ac230fe487efb (diff)
downloadcpython-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.h3
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').