mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Eric Snow's implementation of PEP 421.
Issue 14673: Add sys.implementation
This commit is contained in:
parent
82ffabdfa4
commit
409da157d7
11 changed files with 541 additions and 3 deletions
|
|
@ -1707,6 +1707,9 @@ _Py_ReadyTypes(void)
|
|||
|
||||
if (PyType_Ready(&PyZip_Type) < 0)
|
||||
Py_FatalError("Can't initialize zip type");
|
||||
|
||||
if (PyType_Ready(&_PyNamespace_Type) < 0)
|
||||
Py_FatalError("Can't initialize namespace type");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue