diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-11-06 20:25:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 20:25:14 (GMT) |
commit | 8fa4dc4ba8646c59f945f2451c53e2919f066065 (patch) | |
tree | 6ad8e64e6fc16f91ef594198545d7e112912f6a9 /Misc | |
parent | e56fd449fbb9ac099f389806d4c494fa66fca248 (diff) | |
download | cpython-8fa4dc4ba8646c59f945f2451c53e2919f066065.zip cpython-8fa4dc4ba8646c59f945f2451c53e2919f066065.tar.gz cpython-8fa4dc4ba8646c59f945f2451c53e2919f066065.tar.bz2 |
gh-126489: Do not call persistent_id() for a persistent id in Python pickle (GH-126490)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-11-06-13-41-38.gh-issue-126489.toaf-0.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-06-13-41-38.gh-issue-126489.toaf-0.rst b/Misc/NEWS.d/next/Library/2024-11-06-13-41-38.gh-issue-126489.toaf-0.rst new file mode 100644 index 0000000..8a6573c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-11-06-13-41-38.gh-issue-126489.toaf-0.rst @@ -0,0 +1,3 @@ +The Python implementation of :mod:`pickle` no longer calls +:meth:`pickle.Pickler.persistent_id` for the result of +:meth:`!persistent_id`. |