summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-05-21 17:23:00 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-05-21 17:23:00 (GMT)
commit389e8c85cdf234f7060fb559914302bc68a11380 (patch)
treed8e718a72d05a3340657db4c4c238d03e3c17f8a /Doc/whatsnew
parent1d5ccdb24db4581a677e1db84b8a0f356094740f (diff)
downloadcpython-389e8c85cdf234f7060fb559914302bc68a11380.zip
cpython-389e8c85cdf234f7060fb559914302bc68a11380.tar.gz
cpython-389e8c85cdf234f7060fb559914302bc68a11380.tar.bz2
Remove outdated statement.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.3.rst5
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index e8d9d98..bdcd816 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1455,11 +1455,6 @@ Porting Python code
.. XXX add a point about hash randomization and that it's always on in 3.3
-* :issue:`14205`: A dict lookup now raises a :exc:`RuntimeError` if the dict is
- modified during the lookup. If you implement your own comparison function for
- objects used as dict keys and the dict is shared by multiple threads, access
- to the dict should be protected by a lock.
-
* :issue:`12326`: On Linux, sys.platform doesn't contain the major version
anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending
on the Linux version used to build Python. Replace sys.platform == 'linux2'