diff options
author | Martin Blais <blais@furius.ca> | 2006-06-06 12:46:55 +0000 |
---|---|---|
committer | Martin Blais <blais@furius.ca> | 2006-06-06 12:46:55 +0000 |
commit | 215f13dd118f67fb8c3d3663dbbe11ed33691c4f (patch) | |
tree | b7bb6619005efdc2fb00c9e1b912fc0e75dc2be4 /Lib/smtplib.py | |
parent | 07347d6efc84f06e65c0e55b8906a8e6579bfc4a (diff) | |
download | cpython-git-215f13dd118f67fb8c3d3663dbbe11ed33691c4f.tar.gz |
Normalized a few cases of whitespace in function declarations.
Found them using::
find . -name '*.py' | while read i ; do grep 'def[^(]*( ' $i /dev/null ; done
find . -name '*.py' | while read i ; do grep ' ):' $i /dev/null ; done
(I was doing this all over my own code anyway, because I'd been using spaces in
all defs, so I thought I'd make a run on the Python code as well. If you need
to do such fixes in your own code, you can use xx-rename or parenregu.el within
emacs.)
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 07916cc1b8..9c8c4fa48c 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -150,7 +150,7 @@ class SSLFakeFile: It only supports what is needed in smtplib. """ - def __init__( self, sslobj): + def __init__(self, sslobj): self.sslobj = sslobj def readline(self): |