index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_asyncio
/
echo.py
blob: f6ac0a30d341cb3a6b1671c12f68d2d07b6bce5d (
plain
) (
blame
)
1
2
3
4
5
6
import os if __name__ == '__main__': while True: buf = os.read(0, 1024) os.write(1, buf)