8000 bpo-25643: Refactor the C tokenizer by pablogsal · Pull Request #25050 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-25643: Refactor the C tokenizer #25050

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 28, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Parser/tokenizer.c
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
  • Loading branch information
pablogsal and Erlend Egeberg Aasland authored Mar 28, 2021
commit 6ddb715e4fc436f164cee16215a4d1b341364cc1
3 changes: 1 addition & 2 deletions Parser/tokenizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -942,8 +942,7 @@ tok_underflow_file(struct tok_state *tok) {
return 0;
}
}
else
{
else {
/* We want a 'raw' read. */
if (!tok_readline_raw(tok)) {
return 0;
Expand Down
0