summaryrefslogtreecommitdiffstats
path: root/Objects
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 /Objects
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 'Objects')
-rw-r--r--Objects/object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 26a5a2a..14f4e9f 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -2012,7 +2012,7 @@ none_dealloc(PyObject* ignore)
}
-PyTypeObject PyNone_Type = {
+static PyTypeObject PyNone_Type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"NoneType",
0,
@@ -2043,7 +2043,7 @@ NotImplemented_repr(PyObject *op)
return PyString_FromString("NotImplemented");
}
-PyTypeObject PyNotImplemented_Type = {
+static PyTypeObject PyNotImplemented_Type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"NotImplementedType",
0,