initialize more global type objects (closes #16369)

This commit is contained in:
Benjamin Peterson 2012-10-30 23:21:10 -04:00
parent 1625d88709
commit 6da3ed63d8
3 changed files with 21 additions and 0 deletions

View file

@ -52,6 +52,9 @@ init_symtable(void)
{
PyObject *m;
if (PyType_Ready(&PySTEntry_Type) < 0)
return;
m = Py_InitModule("_symtable", symtable_methods);
if (m == NULL)
return;