summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-02-22 15:40:34 (GMT)
committerGuido van Rossum <guido@python.org>1999-02-22 15:40:34 (GMT)
commitfb801e7d338b3b3c8a919a5aca78250a2ad04da5 (patch)
tree09df2c65fca04251c4863947af14ace1edc86d2b /Lib/os.py
parent0df2188d0849d79924825e9e3f763a8571dbfdc0 (diff)
downloadcpython-fb801e7d338b3b3c8a919a5aca78250a2ad04da5.zip
cpython-fb801e7d338b3b3c8a919a5aca78250a2ad04da5.tar.gz
cpython-fb801e7d338b3b3c8a919a5aca78250a2ad04da5.tar.bz2
As Finn Bock points out, _P_WAIT etc. don't have a leading underscore
so they don't need to be treated specially here.
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/os.py b/Lib/os.py
index a8a08ed..a4d07c9 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -42,9 +42,7 @@ elif 'nt' in _names:
curdir = '.'; pardir = '..'; sep = '\\'; pathsep = ';'
defpath = '.;C:\\bin'
from nt import *
- for i in ['_exit',
- '_P_WAIT', '_P_NOWAIT', '_P_OVERLAY',
- '_P_NOWAITO', '_P_DETACH']:
+ for i in ['_exit']:
try:
exec "from nt import " + i
except ImportError: