@@ -730,7 +730,7 @@ static PyType_Slot multibytecodec_slots[] = {
730
730
};
731
731
732
732
static PyType_Spec multibytecodec_spec = {
733
- .name = "MultibyteCodec" ,
733
+ .name = "_multibytecodec. MultibyteCodec" ,
734
734
.basicsize = sizeof (MultibyteCodecObject ),
735
735
.flags = Py_TPFLAGS_DEFAULT ,
736
736
.slots = multibytecodec_slots ,
@@ -1097,7 +1097,7 @@ static PyType_Slot encoder_slots[] = {
1097
1097
};
1098
1098
1099
1099
static PyType_Spec encoder_spec = {
1100
- .name = "MultibyteIncrementalEncoder" ,
1100
+ .name = "_multibytecodec. MultibyteIncrementalEncoder" ,
1101
1101
.basicsize = sizeof (MultibyteIncrementalEncoderObject ),
1102
1102
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_BASETYPE ,
1103
1103
.slots = encoder_slots ,
@@ -1375,7 +1375,7 @@ static PyType_Slot decoder_slots[] = {
1375
1375
};
1376
1376
1377
1377
static PyType_Spec decoder_spec = {
1378
- .name = "MultibyteIncrementalDecoder" ,
1378
+ .name = "_multibytecodec. MultibyteIncrementalDecoder" ,
1379
1379
.basicsize = sizeof (MultibyteIncrementalDecoderObject ),
1380
1380
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_BASETYPE ,
1381
1381
.slots = decoder_slots ,
@@ -1702,7 +1702,7 @@ static PyType_Slot reader_slots[] = {
1702
1702
};
1703
1703
1704
1704
static PyType_Spec reader_spec = {
1705
- .name = "MultibyteStreamReader" ,
1705
+ .name = "_multibytecodec. MultibyteStreamReader" ,
1706
1706
.basicsize = sizeof (MultibyteStreamReaderObject ),
1707
1707
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_BASETYPE ,
1708
1708
.slots = reader_slots ,
@@ -1928,7 +1928,7 @@ static PyType_Slot writer_slots[] = {
1928
1928
};
1929
1929
1930
1930
static PyType_Spec writer_spec = {
1931
- .name = "MultibyteStreamWriter" ,
1931
+ .name = "_multibytecodec. MultibyteStreamWriter" ,
1932
1932
.basicsize = sizeof (MultibyteStreamWriterObject ),
1933
1933
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_BASETYPE ,
1934
1934
.slots = writer_slots ,
0 commit comments