diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2023-10-31 15:02:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-31 15:02:31 (GMT) |
commit | abb15420c11d9dda9c89f74eac8417240b321109 (patch) | |
tree | 0f07e7bee3e89a0b9b503fe3968d507f8819bbe3 /Misc | |
parent | ad6380bc340900e0977ce54928b0d3e166c7cf99 (diff) | |
download | cpython-abb15420c11d9dda9c89f74eac8417240b321109.zip cpython-abb15420c11d9dda9c89f74eac8417240b321109.tar.gz cpython-abb15420c11d9dda9c89f74eac8417240b321109.tar.bz2 |
gh-109181: Speed up Traceback object creation by lazily compute the line number (#111548)
Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-10-31-14-25-21.gh-issue-109181.11h6Mc.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-10-31-14-25-21.gh-issue-109181.11h6Mc.rst b/Misc/NEWS.d/next/Core and Builtins/2023-10-31-14-25-21.gh-issue-109181.11h6Mc.rst new file mode 100644 index 0000000..61a15b4 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-10-31-14-25-21.gh-issue-109181.11h6Mc.rst @@ -0,0 +1,2 @@ +Speed up :obj:`Traceback` object creation by lazily compute the line number. +Patch by Pablo Galindo |