Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07923f3 commit 8e34e92Copy full SHA for 8e34e92
1 file changed
Include/cpython/unicodeobject.h
@@ -53,7 +53,8 @@ Py_UNICODE_COPY(Py_UNICODE *target, const Py_UNICODE *source, Py_ssize_t length)
53
54
Py_DEPRECATED(3.3) static inline void
55
Py_UNICODE_FILL(Py_UNICODE *target, Py_UNICODE value, Py_ssize_t length) {
56
- for (Py_ssize_t i = 0; i < length; i++) {
+ Py_ssize_t i;
57
+ for (i = 0; i < length; i++) {
58
target[i] = value;
59
}
60
0 commit comments