summaryrefslogtreecommitdiff
path: root/Lib/pty.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/pty.py')
-rw-r--r--Lib/pty.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/pty.py b/Lib/pty.py
index ef2113bbb0..64d391b63c 100644
--- a/Lib/pty.py
+++ b/Lib/pty.py
@@ -10,6 +10,8 @@ from select import select
import os, FCNTL
import tty
+__all__ = ["openpty","fork","spawn"]
+
STDIN_FILENO = 0
STDOUT_FILENO = 1
STDERR_FILENO = 2