[Python-Dev] Re: [Python-checkins] CVS: distutils/distutils/command sdist.py,1.25,1.26

Fredrik Lundh fredrik@pythonware.com
Thu, 8 Jun 2000 10:30:39 +0200


greg wrote:
> Gah... "pattern_re.match (cur_base)" ...
>=20
> You do realize that God intended there to be no spaces between a =
function
> name and the opening paren? Heretic!

http://www.python.org/doc/essays/styleguide.html

    ...
    I hate whitespace in the following places:=20
    ...
    Immediately before the open parenthesis that starts the argument
    list of a function call, as in spam (1). Always write this as =
spam(1).
    ...
    Don't bother to argue with me on any of the above
    ...

</F>