File tree 3 files changed +3
-3
lines changed
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[] = {
702
702
PyType_Spec zstdcompressor_type_spec = {
703
703
.name = "_zstd.ZstdCompressor" ,
704
704
.basicsize = sizeof (ZstdCompressor ),
705
- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC ,
705
+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC ,
706
706
.slots = zstdcompressor_slots ,
707
707
};
Original file line number Diff line number Diff line change @@ -886,6 +886,6 @@ static PyType_Slot ZstdDecompressor_slots[] = {
886
886
PyType_Spec zstddecompressor_type_spec = {
887
887
.name = "_zstd.ZstdDecompressor" ,
888
888
.basicsize = sizeof (ZstdDecompressor ),
889
- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC ,
889
+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC ,
890
890
.slots = ZstdDecompressor_slots ,
891
891
};
Original file line number Diff line number Diff line change @@ -281,6 +281,6 @@ static PyType_Slot zstddict_slots[] = {
281
281
PyType_Spec zstddict_type_spec = {
282
282
.name = "_zstd.ZstdDict" ,
283
283
.basicsize = sizeof (ZstdDict ),
284
- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC ,
284
+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC ,
285
285
.slots = zstddict_slots ,
286
286
};
You can’t perform that action at this time.
0 commit comments