summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/errors.c')
-rw-r--r--Python/errors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c
index baf52ff..e0ce833 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -785,7 +785,7 @@ PyErr_ProgramText(const char *filename, int lineno)
break;
/* fgets read *something*; if it didn't get as
far as pLastChar, it must have found a newline
- or hit the end of the file; if pLastChar is \n,
+ or hit the end of the file; if pLastChar is \n,
it obviously found a newline; else we haven't
yet seen a newline, so must continue */
} while (*pLastChar != '\0' && *pLastChar != '\n');