Skip to content
New issue

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

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

Already on GitHub? # to your account

Not respecting closed stdin #574

Open
iakremnev opened this issue Mar 24, 2025 · 0 comments
Open

Not respecting closed stdin #574

iakremnev opened this issue Mar 24, 2025 · 0 comments

Comments

@iakremnev
Copy link

When Python process is launched with a closed stdin descriptor, sys.stdin object is initialized as regular instead of being set to None.

For demonstration purpose, ghcr.io/astral-sh/uv:debian Docker image is used.

$ uv run --managed-python python -c 'import sys; print(sys.stdin)' <&-
<_io.TextIOWrapper name='<stdin>' mode='r' encoding='utf-8'>
$ /usr/bin/python3 -c  'import sys; print(sys.stdin)' <&-
None

Ideally this behavior should be consistent with reference CPython implementation.

Oddly enough, using --no-managed-python with uv run also produces TextIOWrapper object. As well as running the installed Python directly without invoking uv.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant