File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -702,6 +702,6 @@ static PyType_Slot zstdcompressor_slots[] = {
702702PyType_Spec zstdcompressor_type_spec = {
703703 .name = "_zstd.ZstdCompressor" ,
704704 .basicsize = sizeof (ZstdCompressor ),
705- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC ,
705+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC ,
706706 .slots = zstdcompressor_slots ,
707707};
Original file line number Diff line number Diff line change @@ -886,6 +886,6 @@ static PyType_Slot ZstdDecompressor_slots[] = {
886886PyType_Spec ZstdDecompressor_type_spec = {
887887 .name = "_zstd.ZstdDecompressor" ,
888888 .basicsize = sizeof (ZstdDecompressor ),
889- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC ,
889+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC ,
890890 .slots = ZstdDecompressor_slots ,
891891};
Original file line number Diff line number Diff line change @@ -281,6 +281,6 @@ static PyType_Slot zstddict_slots[] = {
281281PyType_Spec zstddict_type_spec = {
282282 .name = "_zstd.ZstdDict" ,
283283 .basicsize = sizeof (ZstdDict ),
284- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC ,
284+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC ,
285285 .slots = zstddict_slots ,
286286};
You can’t perform that action at this time.
0 commit comments