[Python-checkins] r46545 - python/trunk/Objects/dictobject.c
neal.norwitz
python-checkins at python.org
Tue May 30 06:19:21 CEST 2006
Author: neal.norwitz
Date: Tue May 30 06:19:21 2006
New Revision: 46545
Modified:
python/trunk/Objects/dictobject.c
Log:
Remove stray | in comment
Modified: python/trunk/Objects/dictobject.c
==============================================================================
--- python/trunk/Objects/dictobject.c (original)
+++ python/trunk/Objects/dictobject.c Tue May 30 06:19:21 2006
@@ -578,7 +578,7 @@
* Quadrupling the size improves average dictionary sparseness
* (reducing collisions) at the cost of some memory and iteration
* speed (which loops over every possible entry). It also halves
-| * the number of expensive resize operations in a growing dictionary.
+ * the number of expensive resize operations in a growing dictionary.
*
* Very large dictionaries (over 50K items) use doubling instead.
* This may help applications with severe memory constraints.
More information about the Python-checkins
mailing list