diff options
author | Victor Stinner <vstinner@python.org> | 2024-10-25 09:12:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-25 09:12:48 (GMT) |
commit | db96327203b09ada45f2214567f92fe4d837f82a (patch) | |
tree | 29febc64dbeff2a1ce81080519fca0437c2e54f8 /Misc/NEWS.d | |
parent | da8673da362a2135cd621ac619d3aced6bb55100 (diff) | |
download | cpython-db96327203b09ada45f2214567f92fe4d837f82a.zip cpython-db96327203b09ada45f2214567f92fe4d837f82a.tar.gz cpython-db96327203b09ada45f2214567f92fe4d837f82a.tar.bz2 |
gh-121654: Add PyType_Freeze() function (#122457)
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/C_API/2024-07-30-14-40-08.gh-issue-121654.tgGeAl.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C_API/2024-07-30-14-40-08.gh-issue-121654.tgGeAl.rst b/Misc/NEWS.d/next/C_API/2024-07-30-14-40-08.gh-issue-121654.tgGeAl.rst new file mode 100644 index 0000000..134d36c --- /dev/null +++ b/Misc/NEWS.d/next/C_API/2024-07-30-14-40-08.gh-issue-121654.tgGeAl.rst @@ -0,0 +1,2 @@ +Add :c:func:`PyType_Freeze` function to make a type immutable. Patch by +Victor Stinner. |