diff options
author | Walter Dörwald <walter@livinglogic.de> | 2006-05-25 08:53:28 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2006-05-25 08:53:28 (GMT) |
commit | c611f17418ae99a3d39819f3864f3212cf3bcc61 (patch) | |
tree | 63de7ba714a39018c382e857d8ddfa9335465f07 /Python | |
parent | 61bbe6c37c30aff66c8ff76d50b45b1a05068f0f (diff) | |
download | cpython-c611f17418ae99a3d39819f3864f3212cf3bcc61.zip cpython-c611f17418ae99a3d39819f3864f3212cf3bcc61.tar.gz cpython-c611f17418ae99a3d39819f3864f3212cf3bcc61.tar.bz2 |
Replace tab inside comment with space.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/errors.c | 2 |
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'); |