[Python-checkins] r55667 - peps/trunk/pep-3100.txt

guido.van.rossum python-checkins at python.org
Wed May 30 05:40:32 CEST 2007


Author: guido.van.rossum
Date: Wed May 30 05:40:29 2007
New Revision: 55667

Modified:
   peps/trunk/pep-3100.txt
Log:
None, True, False are keywords now.


Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Wed May 30 05:40:29 2007
@@ -70,7 +70,7 @@
 * Replace ``print`` by a function [14]_  [#pep3105]_ [done]
 * The ``softspace`` attribute of files goes away. [done]
 * Use ``except E1, E2, E3 as err:`` if you want the error variable. [3]_
-* ``None`` becomes a keyword [4]_ (What about ``True``, ``False``?)
+* ``None`` becomes a keyword [4]_ [done; also ``True`` and ``False``]
 * ``...`` to become a general expression element [16]_ [done]
 * ``as`` becomes a keyword [5]_ (starting in 2.6 already) [done]
 * Have list comprehensions be syntactic sugar for passing an


More information about the Python-checkins mailing list