diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2018-01-29 01:56:10 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2018-01-29 01:56:10 (GMT) |
commit | 6c6ddf97c402709713d668d0ed53836a7749ba99 (patch) | |
tree | e403bfbc134daea26026db43b207bbdb203019fa /configure.ac | |
parent | f5b04a360e44aa9733f7a92dd66d2292d6c52955 (diff) | |
download | cpython-6c6ddf97c402709713d668d0ed53836a7749ba99.zip cpython-6c6ddf97c402709713d668d0ed53836a7749ba99.tar.gz cpython-6c6ddf97c402709713d668d0ed53836a7749ba99.tar.bz2 |
bpo-20104: Expose `posix_spawn` in the os module (GH-5109)
Add os.posix_spawn to wrap the low level POSIX API of the same name.
Contributed by Pablo Galindo.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b901f80..6524863 100644 --- a/configure.ac +++ b/configure.ac @@ -3431,7 +3431,7 @@ AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ initgroups kill killpg lchmod lchown lockf linkat lstat lutimes mmap \ memrchr mbrtowc mkdirat mkfifo \ mkfifoat mknod mknodat mktime mremap nice openat pathconf pause pipe2 plock poll \ - posix_fallocate posix_fadvise pread preadv preadv2 \ + posix_fallocate posix_fadvise posix_spawn pread preadv preadv2 \ pthread_init pthread_kill putenv pwrite pwritev pwritev2 readlink readlinkat readv realpath renameat \ sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ setgid sethostname \ |