[Python-checkins] r55527 - python/trunk/Objects/dictobject.c
neal.norwitz
python-checkins at python.org
Wed May 23 08:57:38 CEST 2007
Author: neal.norwitz
Date: Wed May 23 08:57:35 2007
New Revision: 55527
Modified:
python/trunk/Objects/dictobject.c
Log:
Whitespace cleanup
Modified: python/trunk/Objects/dictobject.c
==============================================================================
--- python/trunk/Objects/dictobject.c (original)
+++ python/trunk/Objects/dictobject.c Wed May 23 08:57:35 2007
@@ -1988,7 +1988,7 @@
"D.iteritems() -> an iterator over the (key, value) items of D");
static PyMethodDef mapp_methods[] = {
- {"__contains__",(PyCFunction)dict_contains, METH_O | METH_COEXIST,
+ {"__contains__",(PyCFunction)dict_contains, METH_O | METH_COEXIST,
contains__doc__},
{"__getitem__", (PyCFunction)dict_subscript, METH_O | METH_COEXIST,
getitem__doc__},
More information about the Python-checkins
mailing list