From ea23629bb368783e69caafe2c019576c80826358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9n=C3=A9dikt=20Tran?= <10796600+picnixz@users.noreply.github.com> Date: Sun, 12 Jan 2025 12:17:43 +0100 Subject: [PATCH] update benchmarks --- Doc/whatsnew/3.14.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 9411586f47d8b1..66c92cd450cda3 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -683,11 +683,10 @@ uuid * Improve generation of :class:`~uuid.UUID` objects via their dedicated functions: - * :func:`~uuid.uuid3` is 70% faster for 16-byte names and 20% faster - for 1024-byte names. Performance for longer names remains unchanged. - * :func:`~uuid.uuid5` is 40% faster for 16-byte names and 30% faster - for 1024-byte names. Performance for longer names remains unchanged. - * :func:`~uuid.uuid4` and :func:`~uuid.uuid8` are 30% and 45% faster + * :func:`~uuid.uuid3` and :func:`~uuid.uuid5` are both roughly 40% faster + for 16-byte names and 20% faster for 1024-byte names. Performance for + longer names remains unchanged. + * :func:`~uuid.uuid4` and :func:`~uuid.uuid8` are 30% and 40% faster respectively. (Contributed by Bénédikt Tran in :gh:`128150`.)