summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-06-24 06:50:39 (GMT)
committerGitHub <noreply@github.com>2024-06-24 06:50:39 (GMT)
commit1500a23f33f5a6d052ff1ef6383d9839928b8ff1 (patch)
treee5339de97e05b9e425aac47af6c5fd388c9ca2cc /Misc/NEWS.d
parent02df6795743ee4ee26a07986edbb5e22ae9fec8b (diff)
downloadcpython-1500a23f33f5a6d052ff1ef6383d9839928b8ff1.zip
cpython-1500a23f33f5a6d052ff1ef6383d9839928b8ff1.tar.gz
cpython-1500a23f33f5a6d052ff1ef6383d9839928b8ff1.tar.bz2
gh-120683: Fix an error in logging.LogRecord timestamp (GH-120709)
The integer part of the timestamp can be rounded up, while the millisecond calculation truncates, causing the log timestamp to be wrong by up to 999 ms (affected roughly 1 in 8 million timestamps).
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-06-18-19-18-10.gh-issue-120683.xmRez7.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-06-18-19-18-10.gh-issue-120683.xmRez7.rst b/Misc/NEWS.d/next/Library/2024-06-18-19-18-10.gh-issue-120683.xmRez7.rst
new file mode 100644
index 0000000..50fc927
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-06-18-19-18-10.gh-issue-120683.xmRez7.rst
@@ -0,0 +1,4 @@
+Fix an error in :class:`logging.LogRecord`, when the integer part of the
+timestamp is rounded up, while the millisecond calculation truncates,
+causing the log timestamp to be wrong by up to 999 ms (affected roughly 1 in
+8 million timestamps).