summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-08-09 18:32:54 (GMT)
committerGitHub <noreply@github.com>2021-08-09 18:32:54 (GMT)
commit058fb35b57ca8c5063d16ec818e668b3babfea65 (patch)
tree7c476bb7c59e65a9e8c83ca633068be3f14a1975 /Parser
parent7d14fdb03c3e8384c01da1b21647ce837ed6a29c (diff)
downloadcpython-058fb35b57ca8c5063d16ec818e668b3babfea65.zip
cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.tar.gz
cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.tar.bz2
bpo-44854: Remove trailing whitespaces (GH-27689)
Diffstat (limited to 'Parser')
-rw-r--r--Parser/tokenizer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h
index ff563d5..a40f7d9 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);