Kaydet (Commit) f380e66c authored tarafından Guido van Rossum's avatar Guido van Rossum

Fix comments in string_as_sequence

üst b8393da8
......@@ -288,13 +288,13 @@ stringcompare(a, b)
}
static sequence_methods string_as_sequence = {
stringlength, /*tp_length*/
stringconcat, /*tp_concat*/
stringrepeat, /*tp_repeat*/
stringitem, /*tp_item*/
stringslice, /*tp_slice*/
0, /*tp_ass_item*/
0, /*tp_ass_slice*/
stringlength, /*sq_length*/
stringconcat, /*sq_concat*/
stringrepeat, /*sq_repeat*/
stringitem, /*sq_item*/
stringslice, /*sq_slice*/
0, /*sq_ass_item*/
0, /*sq_ass_slice*/
};
typeobject Stringtype = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment