summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-10-21 00:30:54 (GMT)
committerGitHub <noreply@github.com>2018-10-21 00:30:54 (GMT)
commitbeb83d013e0295c987087febf2be78b1da389b15 (patch)
tree91c8ba8b102f16e4c3d2c1e62a37078b38d69568 /Misc
parent7cba835cc5d3bb6babaecd904a29f88c477b29b3 (diff)
downloadcpython-beb83d013e0295c987087febf2be78b1da389b15.zip
cpython-beb83d013e0295c987087febf2be78b1da389b15.tar.gz
cpython-beb83d013e0295c987087febf2be78b1da389b15.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 (cherry picked from commit 94451182ccd6729c11338926d8a3d11645e86626) Co-authored-by: Max BĂ©langer <aeromax@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/macOS/2018-10-18-23-54-55.bpo-35025.X4LFJg.rst2
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.