[Python-checkins] r58477 - peps/trunk/pep-3137.txt

guido.van.rossum python-checkins at python.org
Mon Oct 15 19:13:10 CEST 2007


Author: guido.van.rossum
Date: Mon Oct 15 19:13:07 2007
New Revision: 58477

Modified:
   peps/trunk/pep-3137.txt
Log:
Use '' instead of "" for repr, as that is the default repr.


Modified: peps/trunk/pep-3137.txt
==============================================================================
--- peps/trunk/pep-3137.txt	(original)
+++ peps/trunk/pep-3137.txt	Mon Oct 15 19:13:07 2007
@@ -82,9 +82,9 @@
     +--------------+-------------+------------+--------------------+
     | C name       | 2.x    repr | 3.0a1 repr | 3.0a2         repr |
     +--------------+-------------+------------+--------------------+
-    | PyUnicode    | unicode u"" | str     "" | str             "" |
-    | PyString     | str      "" | str8   s"" | bytes          b"" |
-    | PyBytes      | N/A         | bytes  b"" | buffer buffer(b"") |
+    | PyUnicode    | unicode u'' | str     '' | str             '' |
+    | PyString     | str      '' | str8   s'' | bytes          b'' |
+    | PyBytes      | N/A         | bytes  b'' | buffer buffer(b'') |
     | PyBuffer     | buffer      | buffer     | N/A                |
     | PyMemoryView | N/A         | memoryview | memoryview         |
     +--------------+-------------+------------+--------------------+


More information about the Python-checkins mailing list