]> granicus.if.org Git - python/commitdiff
Remove stray | in comment
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 30 May 2006 04:19:21 +0000 (04:19 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 30 May 2006 04:19:21 +0000 (04:19 +0000)
Objects/dictobject.c

index dd369a904c1d001ab6f9607c3d3d33fe7f1208ee..8d613627459d2f0c5721a568efe39c87b7a8685a 100644 (file)
@@ -578,7 +578,7 @@ PyDict_SetItem(register PyObject *op, PyObject *key, PyObject *value)
         * 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.