Skip to content

Commit 9920426

Browse files
authored
add period at the end of a sentence
1 parent f88524b commit 9920426

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
@@ -1384,7 +1384,7 @@ _PyCodec_SurrogateEscapeUnicodeEncodeError(PyObject *exc)
13841384
/* object is guaranteed to be "ready" */
13851385
Py_UCS4 ch = PyUnicode_READ_CHAR(obj, i);
13861386
if (ch < 0xdc80 || ch > 0xdcff) {
1387-
/* Not a UTF-8b surrogate, fail with original exception */
1387+
/* Not a UTF-8b surrogate, fail with original exception. */
13881388
Py_DECREF(obj);
13891389
Py_DECREF(res);
13901390
PyErr_SetObject(PyExceptionInstance_Class(exc), exc);

0 commit comments

Comments
 (0)