mirror of
https://github.com/python/cpython.git
synced 2025-10-14 10:53:40 +00:00
GH-115776: Embed the values array into the object, for "normal" Python objects. (GH-116115)
This commit is contained in:
parent
c97d3af239
commit
c32dc47aca
35 changed files with 787 additions and 537 deletions
|
@ -3869,7 +3869,9 @@ PyInit__testcapi(void)
|
|||
return NULL;
|
||||
|
||||
Py_SET_TYPE(&_HashInheritanceTester_Type, &PyType_Type);
|
||||
|
||||
if (PyType_Ready(&_HashInheritanceTester_Type) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
if (PyType_Ready(&matmulType) < 0)
|
||||
return NULL;
|
||||
Py_INCREF(&matmulType);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue