Commit 9467dfaa authored by Fred Drake's avatar Fred Drake

Update to reflect deprecation of the FCNTL module: The fcntl module does

*not* define O_RDWR; get that from the os module.
parent ef5b1e78
......@@ -7,7 +7,7 @@
# Author: Steen Lumholt -- with additions by Guido.
from select import select
import os, FCNTL
import os
import tty
__all__ = ["openpty","fork","spawn"]
......@@ -55,7 +55,7 @@ def _open_terminal():
pass
else:
try:
tty_name, master_fd = sgi._getpty(FCNTL.O_RDWR, 0666, 0)
tty_name, master_fd = sgi._getpty(os.O_RDWR, 0666, 0)
except IOError, msg:
raise os.error, msg
return master_fd, tty_name
......@@ -63,7 +63,7 @@ def _open_terminal():
for y in '0123456789abcdef':
pty_name = '/dev/pty' + x + y
try:
fd = os.open(pty_name, FCNTL.O_RDWR)
fd = os.open(pty_name, os.O_RDWR)
except os.error:
continue
return (fd, '/dev/tty' + x + y)
......@@ -75,7 +75,7 @@ def slave_open(tty_name):
opened filedescriptor.
Deprecated, use openpty() instead."""
return os.open(tty_name, FCNTL.O_RDWR)
return os.open(tty_name, os.O_RDWR)
def fork():
"""fork() -> (pid, master_fd)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment