diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2013-07-27 00:01:35 +0200 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2013-07-27 00:01:35 +0200 |
| commit | ee4b59c0f8d60161380284b897e7f650a1abb638 (patch) | |
| tree | 3312a00dd0ac22d731feedc298001f08252748a5 /Parser | |
| parent | f6e7e36c3d3ffa0c537a30253488fca4464ed409 (diff) | |
| parent | ce72e1ce6c7175ba7262e6348e64b05253a71e1a (diff) | |
| download | cpython-git-ee4b59c0f8d60161380284b897e7f650a1abb638.tar.gz | |
(Merge 3.3) 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 fe8fccdf79..498531d529 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): |
