File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ Type/class unification and new-style classes
66
77Core and builtins
88
9+ - Cycles going through the __class__ link of a new-style instance are
10+ now detected by the garbage collector.
11+
912- Classes using __slots__ are now properly garbage collected.
1013 [SF bug 519621]
1114
@@ -130,6 +133,12 @@ Extension modules
130133
131134Library
132135
136+ - Some fixes in the copy module: when an object is copied through its
137+ __reduce__ method, there was no check for a __setstate__ method on
138+ the result [SF patch 565085]; deepcopy should treat instances of
139+ custom metaclasses the same way it treats instances of type 'type'
140+ [SF patch 560794].
141+
133142- Sockets now support timeout mode. After s.settimeout(T), where T is
134143 a float expressing seconds, subsequent operations raise an exception
135144 if they cannot be completed within T seconds. To disable timeout
You can’t perform that action at this time.
0 commit comments