(Merge 3.3) According to the PEP 7, C code must "use 4-space indents"

Replace 8 spaces with 4.
This commit is contained in:
Victor Stinner 2013-07-27 00:01:35 +02:00
commit ee4b59c0f8
3 changed files with 6190 additions and 6235 deletions

View file

@ -8,7 +8,7 @@ import os, sys
import asdl
TABSIZE = 8
TABSIZE = 4
MAX_COL = 80
def get_c_type(name):