This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kumaraditya
Recipients corona10, erlendaasland, kumaraditya, petr.viktorin, phsilva, shihai1991, vstinner
Date 2022-01-22.05:34:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1642829661.09.0.954755822467.issue46417@roundup.psfhosted.org>
In-reply-to
Content
The following patch further reduces the reference but not sure if it is correct.

diff --git a/Objects/object.c b/Objects/object.c
index a5ee8eef4a..2ba6d14d5b 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1853,6 +1853,9 @@ static PyTypeObject* static_types[] = {
     &PyClassMethod_Type,
     &PyCode_Type,
     &PyComplex_Type,
+    &PyContext_Type,
+    &PyContextVar_Type,
+    &PyContextToken_Type,
     &PyCoro_Type,
     &PyDictItems_Type,
     &PyDictIterItem_Type,
@@ -1911,6 +1914,13 @@ static PyTypeObject* static_types[] = {
     &_PyAsyncGenAThrow_Type,
     &_PyAsyncGenWrappedValue_Type,
     &_PyCoroWrapper_Type,
+    &_PyHamt_Type,
+    &_PyHamt_ArrayNode_Type,
+    &_PyHamt_BitmapNode_Type,
+    &_PyHamt_CollisionNode_Type,
+    &_PyHamtKeys_Type,
+    &_PyHamtValues_Type,
+    &_PyHamtItems_Type,
     &_PyInterpreterID_Type,
     &_PyManagedBuffer_Type,
     &_PyMethodWrapper_Type,


Before:
Running Debug|x64 interpreter...
[4929 refs, 1988 blocks]
After:
Running Debug|x64 interpreter...
[4541 refs, 1853 blocks]
History
Date User Action Args
2022-01-22 05:34:21kumaradityasetrecipients: + kumaraditya, vstinner, phsilva, petr.viktorin, corona10, shihai1991, erlendaasland
2022-01-22 05:34:21kumaradityasetmessageid: <1642829661.09.0.954755822467.issue46417@roundup.psfhosted.org>
2022-01-22 05:34:21kumaradityalinkissue46417 messages
2022-01-22 05:34:20kumaradityacreate