summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-05-24 22:45:09 (GMT)
committerVictor Stinner <vstinner@redhat.com>2018-05-24 22:45:09 (GMT)
commit17d8830312d82e7de42ab89739b0771f712645ff (patch)
tree6d87adc3ad89f6e3ac2d5eec511216fafaeab566 /Misc
parent483000e164ec68717d335767b223ae31b4b720cf (diff)
downloadcpython-17d8830312d82e7de42ab89739b0771f712645ff.zip
cpython-17d8830312d82e7de42ab89739b0771f712645ff.tar.gz
cpython-17d8830312d82e7de42ab89739b0771f712645ff.tar.bz2
bpo-32493: Fix uuid.uuid1() on FreeBSD. (GH-7099)
Use uuid_enc_be() if available to encode UUID to bytes as big endian.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-05-24-17-41-36.bpo-32493.5tAoAu.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-05-24-17-41-36.bpo-32493.5tAoAu.rst b/Misc/NEWS.d/next/Library/2018-05-24-17-41-36.bpo-32493.5tAoAu.rst
new file mode 100644
index 0000000..32f88dd
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-05-24-17-41-36.bpo-32493.5tAoAu.rst
@@ -0,0 +1 @@
+Fixed :func:`uuid.uuid1` on FreeBSD.