diff options
author | Guido van Rossum <guido@python.org> | 1995-08-10 19:42:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-08-10 19:42:05 (GMT) |
commit | 894a7bb9955233293b263897e52fa401240c030d (patch) | |
tree | c458a6084c1a4de88d2ed78cabb85fce5a5f5cd6 /Lib/stringold.py | |
parent | 18596003572b715d57ecb6d357cebc4257c0bb31 (diff) | |
download | cpython-894a7bb9955233293b263897e52fa401240c030d.zip cpython-894a7bb9955233293b263897e52fa401240c030d.tar.gz cpython-894a7bb9955233293b263897e52fa401240c030d.tar.bz2 |
default tabsize to 8
Diffstat (limited to 'Lib/stringold.py')
-rw-r--r-- | Lib/stringold.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/stringold.py b/Lib/stringold.py index 602fe0a..8ad900b 100644 --- a/Lib/stringold.py +++ b/Lib/stringold.py @@ -242,7 +242,7 @@ def zfill(x, width): # Expand tabs in a string. # Doesn't take non-printing chars into account, but does understand \n. -def expandtabs(s, tabsize): +def expandtabs(s, tabsize=8): res = line = '' for c in s: if c == '\t': |