[Python-checkins] cpython (2.7): generate spaces instead of tabs into config.c

benjamin.peterson python-checkins at python.org
Mon Jan 16 03:06:04 EST 2017


https://hg.python.org/cpython/rev/a87bf2d630ed
changeset:   106160:a87bf2d630ed
branch:      2.7
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Jan 16 00:05:12 2017 -0800
summary:
  generate spaces instead of tabs into config.c

files:
  Modules/makesetup |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/makesetup b/Modules/makesetup
--- a/Modules/makesetup
+++ b/Modules/makesetup
@@ -261,7 +261,7 @@
 	for mod in $MODS
 	do
 		EXTDECLS="${EXTDECLS}extern void init$mod(void);$NL"
-		INITBITS="${INITBITS}	{\"$mod\", init$mod},$NL"
+		INITBITS="${INITBITS}    {\"$mod\", init$mod},$NL"
 	done
 
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list