diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-07-26 22:01:35 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-07-26 22:01:35 (GMT) |
commit | ee4b59c0f8d60161380284b897e7f650a1abb638 (patch) | |
tree | 3312a00dd0ac22d731feedc298001f08252748a5 /Parser/asdl_c.py | |
parent | f6e7e36c3d3ffa0c537a30253488fca4464ed409 (diff) | |
parent | ce72e1ce6c7175ba7262e6348e64b05253a71e1a (diff) | |
download | cpython-ee4b59c0f8d60161380284b897e7f650a1abb638.zip cpython-ee4b59c0f8d60161380284b897e7f650a1abb638.tar.gz cpython-ee4b59c0f8d60161380284b897e7f650a1abb638.tar.bz2 |
(Merge 3.3) 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-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 fe8fccd..498531d 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): |