mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Issue #14205: Document the dict lookup change in What's New in Python 3.3
This commit is contained in:
parent
63ed5664a1
commit
8c43e69bce
1 changed files with 7 additions and 0 deletions
|
@ -474,6 +474,13 @@ Some smaller changes made to the core Python language are:
|
|||
|
||||
(:issue:`12170`)
|
||||
|
||||
* A dict lookup now raises a :exc:`RuntimeError` if the dict is modified during
|
||||
the lookup. If you implement your own comparaison 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:`14205`)
|
||||
|
||||
|
||||
New and Improved Modules
|
||||
========================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue