diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-10-03 20:03:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 20:03:49 +0300 |
commit | 93242d7a2ad8c22f72ff84b63ed9046d32f6aa8e (patch) | |
tree | 7d119733b0de07024169d68ac5af8ac63422023f /Parser | |
parent | 5ba61f488da2e092a81c3d126c5827dad6ab2006 (diff) | |
download | cpython-git-93242d7a2ad8c22f72ff84b63ed9046d32f6aa8e.tar.gz |
[3.10] Remove trailing spaces (GH-28709)
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/tokenizer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h index ff563d57fa..a40f7d9687 100644 --- a/Parser/tokenizer.h +++ b/Parser/tokenizer.h @@ -83,7 +83,7 @@ struct tok_state { int async_def_nl; /* =1 if the outermost 'async def' had at least one NEWLINE token after it. */ /* How to proceed when asked for a new token in interactive mode */ - enum interactive_underflow_t interactive_underflow; + enum interactive_underflow_t interactive_underflow; }; extern struct tok_state *PyTokenizer_FromString(const char *, int); |