Skip to content

Commit 3e2a7c2

Browse files
committed
markup fixup
1 parent 9d99097 commit 3e2a7c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/codecs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ PyObject *PyCodec_NameReplaceErrors(PyObject *exc)
10451045
if (ucnhash_capi->getname(c, buffer, sizeof(buffer), 1)) {
10461046
// If 'c' is recognized by getname(), the corresponding replacement
10471047
// is '\\' + 'U' + '{' + NAME + '}', i.e. 1 + 1 + 1 + len(NAME) + 1
1048-
// characters. Failures of 'getname()' are ignored by the handler.
1048+
// characters. Failures of getname() are ignored by the handler.
10491049
replsize = 1 + 1 + 1 + strlen(buffer) + 1;
10501050
}
10511051
else {

0 commit comments

Comments
 (0)