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

guido.van.rossum python-checkins at python.org
Mon Oct 15 18:59:07 CEST 2007


Author: guido.van.rossum
Date: Mon Oct 15 18:59:06 2007
New Revision: 58474

Modified:
   peps/trunk/pep-3137.txt
Log:
Oops, "" should be b"" for PyString in last column.


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


More information about the Python-checkins mailing list