blob: 5fa320a3432f2a86f5ec796e8cc05152053c4df2 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/python3
# Apparently there is no (working) way to get a non-blocking stdout if we call
# the Python interpreter directly with subprocess.Popen. For some reason, this
# works.
import code
code.interact(banner='')
|