diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-07-26 22:00:36 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-07-26 22:00:36 (GMT) |
commit | ce72e1ce6c7175ba7262e6348e64b05253a71e1a (patch) | |
tree | d2f43e7d4ca0d1efa938d051498344193df77bb1 /Parser | |
parent | 6ca8a05f10b37e068f7c7da196d0d97706b6f15f (diff) | |
download | cpython-ce72e1ce6c7175ba7262e6348e64b05253a71e1a.zip cpython-ce72e1ce6c7175ba7262e6348e64b05253a71e1a.tar.gz cpython-ce72e1ce6c7175ba7262e6348e64b05253a71e1a.tar.bz2 |
According to the PEP 7, C code must "use 4-space indents"
Replace 8 spaces with 4.
Diffstat (limited to 'Parser')
-rwxr-xr-x | Parser/asdl_c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index a9e6626..8f0da4a 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): |