Skip to content
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

timeout does not work for sys.stdin #2660

Closed
karpetrosyan opened this issue Jun 2, 2023 · 2 comments
Closed

timeout does not work for sys.stdin #2660

karpetrosyan opened this issue Jun 2, 2023 · 2 comments

Comments

@karpetrosyan
Copy link
Member

This code hangs until ENTER was not pressed

import sys
import trio

async def main():
    with trio.move_on_after(1):
        file = trio.wrap_file(sys.stdin)
        async for line in file:
            print(line)

trio.run(main)
@njsmith
Copy link
Member

njsmith commented Jun 4, 2023 via email

@njsmith
Copy link
Member

njsmith commented Jun 4, 2023

already tracked in #174

@njsmith njsmith closed this as not planned Won't fix, can't repro, duplicate, stale Jun 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants