[Python-Dev] Style guide (PEP 8) updated

Barry A. Warsaw barry@zope.com
Fri, 24 May 2002 15:36:37 -0400


>>>>> "GvR" == Guido van Rossum <guido@python.org> writes:

    >> or boolean-value == True/False?  Of course, other comparisons
    >> apply too.

    GvR> Now *that* is something to add, yes!

How's this:

    - Don't compare boolean values to True or False using == (bool
      types are new in Python 2.3).

-Barry