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

brett.cannon python-checkins at python.org
Fri Aug 25 08:03:08 CEST 2006


Author: brett.cannon
Date: Fri Aug 25 08:03:06 2006
New Revision: 51601

Modified:
   peps/trunk/pep-3100.txt
Log:
Note that backticks and '<>' removal are done.


Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Fri Aug 25 08:03:06 2006
@@ -113,8 +113,8 @@
 
 * String exceptions: use instances of an Exception class [2]_ [done]
 * ``raise Exception, "message"``: use ``raise Exception("message")`` [14]_
-* ```x```: use ``repr(x)`` [2]_
-* The ``<>`` operator: use ``!=`` instead [3]_
+* ```x```: use ``repr(x)`` [2]_ [done]
+* The ``<>`` operator: use ``!=`` instead [3]_ [done]
 * The __mod__ and __divmod__ special methods on float. [29]_
 * Might drop unbound methods? [7]_
 * METH_OLDARGS


More information about the Python-checkins mailing list