This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: spawnlp is missing
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: akuchling, gtm256
Priority: normal Keywords:

Created on 2005-11-21 21:16 by gtm256, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg26911 - (view) Author: Greg MacDonald (gtm256) Date: 2005-11-21 21:16
spawnlp is missing from my os module.

I am running 2.4.2 on windows 2000.

>>> dir(os)
['F_OK', 'O_APPEND', 'O_BINARY', 'O_CREAT', 'O_EXCL', '
O_NOINHERIT', 'O_RANDOM', 'O_RDONLY', 'O_RDWR', 'O_SEQU
ENTIAL', 'O_SHORT_LIVED', 'O_TEMPORARY', 'O_TEXT', 'O_T
RUNC', 'O_WRONLY', 'P_DETACH', 'P_NOWAIT', 'P_NOWAITO',
 'P_OVERLAY', 'P_WAIT', 'R_OK', 'TMP_MAX', 'UserDict', 
'W_OK', 'X_OK', '_Environ', '__all__', '__builtins__', 
'__doc__', '__file__', '__name__', '_copy_reg', '_execv
pe', '_exists', '_exit', '_get_exports_list', '_make_st
at_result', '_make_statvfs_result', '_pickle_stat_resul
t', '_pickle_statvfs_result', 'abort', 'access', 'altse
p', 'chdir', 'chmod', 'close', 'curdir', 'defpath', 'de
vnull', 'dup', 'dup2', 'environ', 'error', 'execl', 'ex
ecle', 'execlp', 'execlpe', 'execv', 'execve', 'execvp'
, 'execvpe', 'extsep', 'fdopen', 'fstat', 'fsync', 'get
cwd', 'getcwdu', 'getenv', 'getpid', 'isatty', 'linesep
', 'listdir', 'lseek', 'lstat', 'makedirs', 'mkdir', 'n
ame', 'open', 'pardir', 'path', 'pathsep', 'pipe', 'pop
en', 'popen2', 'popen3', 'popen4', 'putenv', 'read', 'r
emove', 'removedirs', 'rename', 'renames', 'rmdir', 'se
p', 'spawnl', 'spawnle', 'spawnv', 'spawnve', 'startfil
e', 'stat', 'stat_float_times', 'stat_result', 'statvfs
_result', 'strerror', 'sys', 'system', 'tempnam', 'time
s', 'tmpfile', 'tmpnam', 'umask', 'unlink', 'unsetenv',
 'urandom', 'utime', 'waitpid', 'walk', 'write']
msg26912 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2005-12-04 20:20
Logged In: YES 
user_id=11375

Not a bug: spawnlp and spawnvp are not available on Windows.
History
Date User Action Args
2022-04-11 14:56:14adminsetgithub: 42617
2005-11-21 21:16:49gtm256create