summaryrefslogtreecommitdiff
path: root/Include/sliceobject.h
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-11-28 17:56:10 +0200
committerGitHub <noreply@github.com>2017-11-28 17:56:10 +0200
commit598ceae876ff4a23072e59945597e945583de4ab (patch)
treea7c0c1380c40bda01c70b8bd40ba47d1b2f6d54a /Include/sliceobject.h
parent08d2b86a1058b733bb7f1ae2b55818dd9687d21c (diff)
downloadcpython-git-598ceae876ff4a23072e59945597e945583de4ab.tar.gz
bpo-32150: Expand tabs to spaces in C files. (#4583)
Diffstat (limited to 'Include/sliceobject.h')
-rw-r--r--Include/sliceobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/sliceobject.h b/Include/sliceobject.h
index b24f2926f1..c238b099ea 100644
--- a/Include/sliceobject.h
+++ b/Include/sliceobject.h
@@ -21,7 +21,7 @@ let these be any arbitrary python type. Py_None stands for omitted values.
#ifndef Py_LIMITED_API
typedef struct {
PyObject_HEAD
- PyObject *start, *stop, *step; /* not NULL */
+ PyObject *start, *stop, *step; /* not NULL */
} PySliceObject;
#endif