We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fb5baa commit 758045fCopy full SHA for 758045f
Doc/whatsnew/3.14.rst
@@ -510,6 +510,11 @@ ctypes
510
loaded by the current process.
511
(Contributed by Brian Ward in :gh:`119349`.)
512
513
+* Move :func:`ctypes.POINTER` types cache from the global ``_pointer_type_cache``
514
+ to the corresponding :mod:`ctypes` types. This will stop the cache from
515
+ growing without limits in some situations.
516
+ (Contributed by Sergey Miryanov in :gh:`100926`).
517
+
518
datetime
519
--------
520
Misc/NEWS.d/next/Library/2025-03-17-23-07-57.gh-issue-100926.B8gcbz.rst
@@ -0,0 +1,2 @@
1
+Move :func:`ctypes.POINTER` types cache from the global ``_pointer_type_cache``
2
+to the corresponding :mod:`ctypes` types to avoid unlimited growth of the cache.
0 commit comments