mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
[3.12] gh-105324: Fix tokenize module main function for stdin (GH-105325) (#105330)
This commit is contained in:
parent
ab660e9a53
commit
3aa3be4fe3
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