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

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


http://hg.python.org/cpython/rev/f7075eb04b75
changeset:   90850:f7075eb04b75
branch:      3.4
parent:      90847:62eb4828fdf7
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
@@ -46,7 +46,7 @@
 PyAPI_DATA(PyTypeObject) PySortWrapper_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