diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-28 17:56:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 17:56:10 +0200 |
commit | 598ceae876ff4a23072e59945597e945583de4ab (patch) | |
tree | a7c0c1380c40bda01c70b8bd40ba47d1b2f6d54a /Modules/_weakref.c | |
parent | 08d2b86a1058b733bb7f1ae2b55818dd9687d21c (diff) | |
download | cpython-git-598ceae876ff4a23072e59945597e945583de4ab.tar.gz |
bpo-32150: Expand tabs to spaces in C files. (#4583)
Diffstat (limited to 'Modules/_weakref.c')
-rw-r--r-- | Modules/_weakref.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Modules/_weakref.c b/Modules/_weakref.c index f9c68d6a64..c1238e00d3 100644 --- a/Modules/_weakref.c +++ b/Modules/_weakref.c @@ -138,15 +138,15 @@ weakref_functions[] = { static struct PyModuleDef weakrefmodule = { - PyModuleDef_HEAD_INIT, - "_weakref", - "Weak-reference support module.", - -1, - weakref_functions, - NULL, - NULL, - NULL, - NULL + PyModuleDef_HEAD_INIT, + "_weakref", + "Weak-reference support module.", + -1, + weakref_functions, + NULL, + NULL, + NULL, + NULL }; PyMODINIT_FUNC |