Close #14248: fix typo.

This commit is contained in:
Georg Brandl 2012-03-10 20:52:16 +01:00
parent c7ceb2bc95
commit a08e7e1c5d
1 changed files with 1 additions and 1 deletions

View File

@ -475,7 +475,7 @@ 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
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.