diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-28 15:56:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 15:56:10 (GMT) |
commit | 598ceae876ff4a23072e59945597e945583de4ab (patch) | |
tree | a7c0c1380c40bda01c70b8bd40ba47d1b2f6d54a /Include/cellobject.h | |
parent | 08d2b86a1058b733bb7f1ae2b55818dd9687d21c (diff) | |
download | cpython-598ceae876ff4a23072e59945597e945583de4ab.zip cpython-598ceae876ff4a23072e59945597e945583de4ab.tar.gz cpython-598ceae876ff4a23072e59945597e945583de4ab.tar.bz2 |
bpo-32150: Expand tabs to spaces in C files. (#4583)
Diffstat (limited to 'Include/cellobject.h')
-rw-r--r-- | Include/cellobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/cellobject.h b/Include/cellobject.h index a0aa4d9..2f9b5b7 100644 --- a/Include/cellobject.h +++ b/Include/cellobject.h @@ -7,8 +7,8 @@ extern "C" { #endif typedef struct { - PyObject_HEAD - PyObject *ob_ref; /* Content of the cell or NULL when empty */ + PyObject_HEAD + PyObject *ob_ref; /* Content of the cell or NULL when empty */ } PyCellObject; PyAPI_DATA(PyTypeObject) PyCell_Type; |