diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2020-05-26 04:33:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 04:33:35 (GMT) |
commit | a2bbedc8b18c001d2f9e702e6e678efbb2990daa (patch) | |
tree | d35ba2b5614b3effc11a76a821ee8bb574b9233f /Parser/tokenizer.c | |
parent | 4a0ac42c52a4d9ccfb0a78ab02aa03172ce0e31a (diff) | |
download | cpython-a2bbedc8b18c001d2f9e702e6e678efbb2990daa.zip cpython-a2bbedc8b18c001d2f9e702e6e678efbb2990daa.tar.gz cpython-a2bbedc8b18c001d2f9e702e6e678efbb2990daa.tar.bz2 |
Fix peg_generator compiler warnings under MSVC (GH-20405)
Diffstat (limited to 'Parser/tokenizer.c')
-rw-r--r-- | Parser/tokenizer.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index b81fa11..cebfadc 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -32,10 +32,6 @@ || c == '_'\ || (c >= 128)) -extern char *PyOS_Readline(FILE *, FILE *, const char *); -/* Return malloc'ed string including trailing \n; - empty malloc'ed string for EOF; - NULL if interrupted */ /* Don't ever change this -- it would break the portability of Python code */ #define TABSIZE 8 |