[Python-checkins] cpython (2.7): remove tab (closes #21587)

benjamin.peterson python-checkins at python.org
Tue May 27 00:12:50 CEST 2014


http://hg.python.org/cpython/rev/e38e30b0d017
changeset:   90849:e38e30b0d017
branch:      2.7
parent:      90846:dc2a123d538a
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon May 26 15:12:28 2014 -0700
summary:
  remove tab (closes #21587)

files:
  Include/listobject.h |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Include/listobject.h b/Include/listobject.h
--- a/Include/listobject.h
+++ b/Include/listobject.h
@@ -41,7 +41,7 @@
 PyAPI_DATA(PyTypeObject) PyList_Type;
 
 #define PyList_Check(op) \
-		PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
+    PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
 #define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type)
 
 PyAPI_FUNC(PyObject *) PyList_New(Py_ssize_t size);

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


More information about the Python-checkins mailing list