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 ecc6e66 commit 30c825cCopy full SHA for 30c825c
1 file changed
Doc/whatsnew/3.3.rst
@@ -1117,6 +1117,11 @@ Porting Python code
1117
1118
.. XXX add a point about hash randomization and that it's always on in 3.3
1119
1120
+* :issue:`14205`: A dict lookup now raises a :exc:`RuntimeError` if the dict is
1121
+ modified during the lookup. If you implement your own comparison function for
1122
+ objects used as dict keys and the dict is shared by multiple threads, access
1123
+ to the dict should be protected by a lock.
1124
+
1125
* :issue:`12326`: On Linux, sys.platform doesn't contain the major version
1126
anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
1127
on the Linux version used to build Python. Replace sys.platform == 'linux2'
0 commit comments