mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-105324: Fix tokenize module main function for stdin (#105325)
This commit is contained in:
parent
677cf39741
commit
f04c16875b
2 changed files with 3 additions and 2 deletions
|
@ -490,8 +490,7 @@ def main():
|
|||
else:
|
||||
filename = "<stdin>"
|
||||
tokens = _generate_tokens_from_c_tokenizer(
|
||||
(x.encode('utf-8') for x in iter(sys.stdin.readline, "")
|
||||
), "utf-8", extra_tokens=True)
|
||||
sys.stdin.readline, extra_tokens=True)
|
||||
|
||||
|
||||
# Output the tokenization
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue