diff options
author | Ian Norton <inorton@gmail.com> | 2020-02-14 03:09:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-14 03:09:11 (GMT) |
commit | a9edf44a2de9b23a1690b36cdfeed7b41ab763bd (patch) | |
tree | 0779808c2515c8b582b5c4a6eb8b58faaaa6f4d4 /Misc | |
parent | f632736023502816f2e6bd714d1b48c81aa2ccc1 (diff) | |
download | cpython-a9edf44a2de9b23a1690b36cdfeed7b41ab763bd.zip cpython-a9edf44a2de9b23a1690b36cdfeed7b41ab763bd.tar.gz cpython-a9edf44a2de9b23a1690b36cdfeed7b41ab763bd.tar.bz2 |
closes bpo-39619 Fix os.chroot on HP-UX 11.31 (GH-18495)
Setting `-D_XOPEN_SOURCE=700` on HP-UX causes system functions such as chroot to be undefined. This change stops `_XOPEN_SOURCE` begin set on HP-UX
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-02-13-07-35-00.bpo-39619.inb_master_chroot.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-02-13-07-35-00.bpo-39619.inb_master_chroot.rst b/Misc/NEWS.d/next/Core and Builtins/2020-02-13-07-35-00.bpo-39619.inb_master_chroot.rst new file mode 100644 index 0000000..18f32f7 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-02-13-07-35-00.bpo-39619.inb_master_chroot.rst @@ -0,0 +1 @@ +Enable use of :func:`os.chroot` on HP-UX systems. |