From d219a4f799638041a8210a5971c75e3e1190ac62 Mon Sep 17 00:00:00 2001 From: "neal.norwitz" Date: Tue, 30 May 2006 04:19:21 +0000 Subject: [PATCH] Remove stray | in comment git-svn-id: http://svn.python.org/projects/python/trunk@46545 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Objects/dictobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index dd369a904c..8d61362745 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -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. -- 2.11.4.GIT