diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-11-19 06:25:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-19 06:25:32 (GMT) |
commit | a3360facbaa8886f1e6f8a80057230371fee675b (patch) | |
tree | 4d4481f288dbe57348e632165f3dcff1295f644b /Doc/whatsnew | |
parent | 27d8dc2c9d3de886a884f79f0621d4586c0e0f7a (diff) | |
download | cpython-a3360facbaa8886f1e6f8a80057230371fee675b.zip cpython-a3360facbaa8886f1e6f8a80057230371fee675b.tar.gz cpython-a3360facbaa8886f1e6f8a80057230371fee675b.tar.bz2 |
gh-99284: [ctypes] remove `_use_broken_old_ctypes_structure_semantics_` (GH-99285)
It was untested and undocumented. No code has been found in the wild that ever used it.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index bb08e44..f8786c1 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -873,3 +873,7 @@ Removed * Remove the ``PyUnicode_InternImmortal()`` function and the ``SSTATE_INTERNED_IMMORTAL`` macro. (Contributed by Victor Stinner in :gh:`85858`.) + +* Remove ``_use_broken_old_ctypes_structure_semantics_`` flag + from :mod:`ctypes` module. + (Contributed by Nikita Sobolev in :gh:`99285`.) |