]> granicus.if.org Git - python/commit
Normalized a few cases of whitespace in function declarations.
authorMartin Blais <blais@furius.ca>
Tue, 6 Jun 2006 12:46:55 +0000 (12:46 +0000)
committerMartin Blais <blais@furius.ca>
Tue, 6 Jun 2006 12:46:55 +0000 (12:46 +0000)
commit215f13dd118f67fb8c3d3663dbbe11ed33691c4f
treeb7bb6619005efdc2fb00c9e1b912fc0e75dc2be4
parent07347d6efc84f06e65c0e55b8906a8e6579bfc4a
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.)
Demo/classes/Dates.py
Demo/threads/fcmp.py
Lib/ctypes/test/test_pointers.py
Lib/lib-tk/Tix.py
Lib/markupbase.py
Lib/plat-mac/EasyDialogs.py
Lib/smtplib.py
Lib/test/test_builtin.py
Lib/test/test_tempfile.py
Tools/webchecker/webchecker.py