summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-10-31 03:27:52 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-10-31 03:27:52 (GMT)
commite8ea97fffb591cd71090d0f3114bf1d3bcd31454 (patch)
tree3710073dcda7cfa947f97676c4edd305bb38952f /Modules
parentcc4bacf2070f83479abb54592c35c7d2c6508000 (diff)
parentc43112823b1f748822c43ad42566537580c02af2 (diff)
downloadcpython-e8ea97fffb591cd71090d0f3114bf1d3bcd31454.zip
cpython-e8ea97fffb591cd71090d0f3114bf1d3bcd31454.tar.gz
cpython-e8ea97fffb591cd71090d0f3114bf1d3bcd31454.tar.bz2
merge 3.2 (#16369)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/symtablemodule.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/symtablemodule.c b/Modules/symtablemodule.c
index f6201e5..02a81f1 100644
--- a/Modules/symtablemodule.c
+++ b/Modules/symtablemodule.c
@@ -63,6 +63,9 @@ PyInit__symtable(void)
{
PyObject *m;
+ if (PyType_Ready(&PySTEntry_Type) < 0)
+ return NULL;
+
m = PyModule_Create(&symtablemodule);
if (m == NULL)
return NULL;