[Python-checkins] [3.6] remove tabs from getcompiler.c (GH-3892) (#3893)

Benjamin Peterson webhook-mailer at python.org
Thu Oct 5 11:41:12 EDT 2017


https://github.com/python/cpython/commit/8aafd5fd7961df1068325d41cc0acd72e7009a0f
commit: 8aafd5fd7961df1068325d41cc0acd72e7009a0f
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Benjamin Peterson <benjamin at python.org>
date: 2017-10-05T08:41:06-07:00
summary:

[3.6] remove tabs from getcompiler.c (GH-3892) (#3893)

(cherry picked from commit a8ed11742b4c2115597977ce04fa8e043d9e0792)

files:
M Python/getcompiler.c

diff --git a/Python/getcompiler.c b/Python/getcompiler.c
index 0f441deb84d..9d9c33ac2de 100644
--- a/Python/getcompiler.c
+++ b/Python/getcompiler.c
@@ -24,5 +24,5 @@
 const char *
 Py_GetCompiler(void)
 {
-	return COMPILER;
+    return COMPILER;
 }



More information about the Python-checkins mailing list