diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2024-05-28 21:00:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 21:00:04 (GMT) |
commit | 12a580b82d018949c40fea235d5ff8a97e362709 (patch) | |
tree | c4f9e14ac14588ae841280dacad50ccb30a385d0 /Misc | |
parent | 0d0be6b3efeace4743329f81c08f9720cc221207 (diff) | |
download | cpython-12a580b82d018949c40fea235d5ff8a97e362709.zip cpython-12a580b82d018949c40fea235d5ff8a97e362709.tar.gz cpython-12a580b82d018949c40fea235d5ff8a97e362709.tar.bz2 |
[3.13] gh-117398: Statically Allocate the Datetime C-API (GH-119472) (gh-119641)
This is a backport of 3 commits that go together.
(cherry picked from commit a895756)
(cherry picked from commit b30d30c)
(cherry picked from commit a89fc26)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-05-23-11-52-36.gh-issue-117398.2FG1Mk.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-05-23-11-52-36.gh-issue-117398.2FG1Mk.rst b/Misc/NEWS.d/next/Library/2024-05-23-11-52-36.gh-issue-117398.2FG1Mk.rst new file mode 100644 index 0000000..ac595f1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-05-23-11-52-36.gh-issue-117398.2FG1Mk.rst @@ -0,0 +1,3 @@ +Objects in the datetime C-API are now all statically allocated, which means +better memory safety, especially when the module is reloaded. This should be +transparent to users. |