From 2199227be420a7dfbd2b6ae994088dc78bfbe422 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 28 Dec 2011 12:01:31 -0600 Subject: fix weird indentation --- Objects/abstract.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/abstract.c b/Objects/abstract.c index 39f1a26..a44bec6 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -1984,7 +1984,7 @@ PySequence_Index(PyObject *s, PyObject *o) 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; } -- cgit v0.12