diff options
author | Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> | 2019-01-16 13:29:26 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-01-16 13:29:26 (GMT) |
commit | 92b8322e7ea04b239cb1cb87b78d952f13ddfebb (patch) | |
tree | afcf4294d4949a59dc2d3383e11b5c2b91970597 /pyconfig.h.in | |
parent | 9daecf37a571e98aaf43a387bcc9e41a7132f477 (diff) | |
download | cpython-92b8322e7ea04b239cb1cb87b78d952f13ddfebb.zip cpython-92b8322e7ea04b239cb1cb87b78d952f13ddfebb.tar.gz cpython-92b8322e7ea04b239cb1cb87b78d952f13ddfebb.tar.bz2 |
bpo-35674: Add os.posix_spawnp() (GH-11554)
Add a new os.posix_spawnp() function.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index f37ca36..a2a5623 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -732,6 +732,9 @@ /* Define to 1 if you have the `posix_spawn' function. */ #undef HAVE_POSIX_SPAWN +/* Define to 1 if you have the `posix_spawnp' function. */ +#undef HAVE_POSIX_SPAWNP + /* Define to 1 if you have the `pread' function. */ #undef HAVE_PREAD |