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

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


Author: guido.van.rossum
Date: Mon Oct 15 19:00:31 2007
New Revision: 58475

Modified:
   peps/trunk/pep-3137.txt
Log:
Don't put N/A in the repr column for PyBuffer or PyBytes.


Modified: peps/trunk/pep-3137.txt
==============================================================================
--- peps/trunk/pep-3137.txt	(original)
+++ peps/trunk/pep-3137.txt	Mon Oct 15 19:00:31 2007
@@ -85,8 +85,8 @@
     | PyUnicode    | unicode u"" | str     "" | str             "" |
     | 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 |
+    | PyBuffer     | buffer      | buffer     | N/A                |
+    | PyMemoryView | N/A         | N/A        | memoryview         |
     +--------------+-------------+------------+--------------------+
 
 Literal Notations


More information about the Python-checkins mailing list