aboutsummaryrefslogtreecommitdiff
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 /Python/getversion.c
parentbpo-31440: Changed default module search path for windows (diff)
downloadcpython-598ceae876ff4a23072e59945597e945583de4ab.tar.gz
cpython-598ceae876ff4a23072e59945597e945583de4ab.tar.bz2
cpython-598ceae876ff4a23072e59945597e945583de4ab.zip
bpo-32150: Expand tabs to spaces in C files. (#4583)
Diffstat (limited to 'Python/getversion.c')
-rw-r--r--Python/getversion.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/getversion.c b/Python/getversion.c
index 7bd6efd0a01..c32b6f9d60d 100644
--- a/Python/getversion.c
+++ b/Python/getversion.c
@@ -8,8 +8,8 @@
const char *
Py_GetVersion(void)
{
- static char version[250];
- PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
- PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler());
- return version;
+ static char version[250];
+ PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
+ PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler());
+ return version;
}