From 91f4380cedbae32b49adbea2518014a5624c6523 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Sun, 26 May 2019 17:10:09 +0200 Subject: bpo-36785: PEP 574 implementation (GH-7076) --- Objects/object.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Objects/object.c') diff --git a/Objects/object.c b/Objects/object.c index f842ab3889..6d79165683 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -1839,6 +1839,7 @@ _PyTypes_Init(void) INIT_TYPE(&PyMethodDescr_Type, "method descr"); INIT_TYPE(&PyCallIter_Type, "call iter"); INIT_TYPE(&PySeqIter_Type, "sequence iterator"); + INIT_TYPE(&PyPickleBuffer_Type, "pickle.PickleBuffer"); INIT_TYPE(&PyCoro_Type, "coroutine"); INIT_TYPE(&_PyCoroWrapper_Type, "coroutine wrapper"); INIT_TYPE(&_PyInterpreterID_Type, "interpreter ID"); -- cgit v1.2.1