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 0d9d56c commit 6d94626Copy full SHA for 6d94626
Doc/whatsnew/3.13.rst
@@ -824,6 +824,19 @@ copy
824
(Contributed by Serhiy Storchaka in :gh:`108751`.)
825
826
827
+ctypes
828
+------
829
+
830
+* As a consequence of necessary internal refactoring, initialization of
831
+ internal metaclasses now happens in ``__init__`` rather
832
+ than in ``__new__``. This affects projects that subclass these internal
833
+ metaclasses to provide custom initialization.
834
+ Generally, logic that was done in ``__new__`` after calling
835
+ ``super().__new__`` should be moved to ``__init__``.
836
+ See :gh:`124520` for discussion and links to changes in some affected
837
+ projects.
838
839
840
dbm
841
---
842
0 commit comments