diff options
Diffstat (limited to 'Lib/tty.py')
-rw-r--r-- | Lib/tty.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/tty.py b/Lib/tty.py index b1904fb505..a72eb67554 100644 --- a/Lib/tty.py +++ b/Lib/tty.py @@ -4,6 +4,8 @@ from termios import * +__all__ = ["setraw", "setcbreak"] + # Indexes for termios list. IFLAG = 0 OFLAG = 1 |