diff options
author | Max BĂ©langer <aeromax@gmail.com> | 2018-10-21 00:07:54 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-10-21 00:07:54 (GMT) |
commit | 94451182ccd6729c11338926d8a3d11645e86626 (patch) | |
tree | 5b2445d676ee531a57303e7c09a3ab1d528019b8 /Misc | |
parent | 12d0ff12305957511c9da22513858adbcef72a95 (diff) | |
download | cpython-94451182ccd6729c11338926d8a3d11645e86626.zip cpython-94451182ccd6729c11338926d8a3d11645e86626.tar.gz cpython-94451182ccd6729c11338926d8a3d11645e86626.tar.bz2 |
closes bpo-35025: Properly guard the `CLOCK_GETTIME` et al macros in timemodule.c. (GH-9961)
Guard the `CLOCK_GETTIME` et al macros in `timemodule` based on the availability of the parent functions
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/macOS/2018-10-18-23-54-55.bpo-35025.X4LFJg.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2018-10-18-23-54-55.bpo-35025.X4LFJg.rst b/Misc/NEWS.d/next/macOS/2018-10-18-23-54-55.bpo-35025.X4LFJg.rst new file mode 100644 index 0000000..aebd1af --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2018-10-18-23-54-55.bpo-35025.X4LFJg.rst @@ -0,0 +1,2 @@ +Properly guard the use of the ``CLOCK_GETTIME`` et al. macros in ``timemodule`` +on macOS. |