summaryrefslogtreecommitdiff
path: root/Parser/asdl_c.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-07-27 00:00:36 +0200
committerVictor Stinner <victor.stinner@gmail.com>2013-07-27 00:00:36 +0200
commitce72e1ce6c7175ba7262e6348e64b05253a71e1a (patch)
treed2f43e7d4ca0d1efa938d051498344193df77bb1 /Parser/asdl_c.py
parent6ca8a05f10b37e068f7c7da196d0d97706b6f15f (diff)
downloadcpython-git-ce72e1ce6c7175ba7262e6348e64b05253a71e1a.tar.gz
According to the PEP 7, C code must "use 4-space indents"
Replace 8 spaces with 4.
Diffstat (limited to 'Parser/asdl_c.py')
-rwxr-xr-xParser/asdl_c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py
index a9e6626ab4..8f0da4adc1 100755
--- a/Parser/asdl_c.py
+++ b/Parser/asdl_c.py
@@ -8,7 +8,7 @@ import os, sys
import asdl
-TABSIZE = 8
+TABSIZE = 4
MAX_COL = 80
def get_c_type(name):