Whitespace cleanup
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index daf64e0..bf2a11e 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -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__},