[Python-checkins] r70478 - python/branches/py3k/Lib/collections.py

raymond.hettinger python-checkins at python.org
Fri Mar 20 00:23:16 CET 2009


Author: raymond.hettinger
Date: Fri Mar 20 00:23:15 2009
New Revision: 70478
Log:
Fix typo
Modified:
 python/branches/py3k/Lib/collections.py
Modified: python/branches/py3k/Lib/collections.py
==============================================================================
--- python/branches/py3k/Lib/collections.py	(original)
+++ python/branches/py3k/Lib/collections.py	Fri Mar 20 00:23:15 2009
@@ -23,13 +23,13 @@
 # The internal self.__map dictionary maps keys to links in a doubly linked list.
 # The doubly linked list starts and ends with a sentinel element.
 # The sentinel element never gets deleted. It simplifies the algorithm.
- # Setting a new item cause a new link to append to the doubly linked list.
+ # Setting a new item causes a new link to append to the doubly linked list.
 # Deleting an item uses self.__map to find the link, which is then removed.
 # Iteration follows the linked list in order.
 # Reverse iteration follows the links backwards.
 # The inherited dict provides __getitem__, __len__, __contains__, and get.
 # The remaining methods are order-aware.
- # Big-Oh running times for all methods is the same as for regular dictionaries.
+ # Big-Oh running times for all methods are the same as for regular dictionaries.
 
 def __init__(self, *args, **kwds):
 if len(args) > 1:


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /