mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Oops, fix my previous commit: unicode => to
This commit is contained in:
parent
b15d4d899c
commit
c17f540b7a
1 changed files with 2 additions and 2 deletions
|
@ -642,7 +642,7 @@ PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start,
|
||||||
"Cannot modify a string having more than 1 reference");
|
"Cannot modify a string having more than 1 reference");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
_PyUnicode_DIRTY(unicode);
|
_PyUnicode_DIRTY(to);
|
||||||
|
|
||||||
from_kind = PyUnicode_KIND(from);
|
from_kind = PyUnicode_KIND(from);
|
||||||
to_kind = PyUnicode_KIND(to);
|
to_kind = PyUnicode_KIND(to);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue