mirror of
https://github.com/python/cpython.git
synced 2025-12-02 23:57:43 +00:00
initialize more global type objects (closes #16369)
This commit is contained in:
parent
1625d88709
commit
6da3ed63d8
3 changed files with 21 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue