[Python-checkins] cpython: fix weird indentation

benjamin.peterson python-checkins at python.org
Wed Dec 28 19:02:03 CET 2011


http://hg.python.org/cpython/rev/0558a03b1bec
changeset:   74192:0558a03b1bec
parent:      74189:456b02030100
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Dec 28 12:01:31 2011 -0600
summary:
  fix weird indentation

files:
  Objects/abstract.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/abstract.c b/Objects/abstract.c
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -1984,7 +1984,7 @@
 int
 PyMapping_Check(PyObject *o)
 {
-    return      o && o->ob_type->tp_as_mapping &&
+    return o && o->ob_type->tp_as_mapping &&
         o->ob_type->tp_as_mapping->mp_subscript;
 }
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list