diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2023-05-27 11:41:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-27 11:41:50 (GMT) |
commit | 6e62eb2e70a9f2a8099735989a58e8c8cfb4a2f2 (patch) | |
tree | 34cac4dcf4d2287fa09852b1f0d35dfb2834c77b /Parser | |
parent | 949f0f5bb07d94f8882135a1d58d82c0a2b289a9 (diff) | |
download | cpython-6e62eb2e70a9f2a8099735989a58e8c8cfb4a2f2.zip cpython-6e62eb2e70a9f2a8099735989a58e8c8cfb4a2f2.tar.gz cpython-6e62eb2e70a9f2a8099735989a58e8c8cfb4a2f2.tar.bz2 |
Fix indentation in Parser/tokenizer.c (#105012)
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/tokenizer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 1e8f785..a7651b1 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -1760,7 +1760,7 @@ tok_get_normal_mode(struct tok_state *tok, tokenizer_mode* current_tok, struct t tok->starting_col_offset = tok->col_offset; /* Return pending indents/dedents */ - if (tok->pendin != 0) { + if (tok->pendin != 0) { if (tok->pendin < 0) { if (tok->tok_extra_tokens) { p_start = tok->cur; |