Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Twisted / test / process_tty.py
Size: Mime:
"""Test to make sure we can open /dev/tty"""

f = open("/dev/tty", "rb+", buffering=0)
a = f.readline()
f.write(a)
f.close()