Oops, "" should be b"" for PyString in last column.

This commit is contained in:
Guido van Rossum 2007-10-15 16:59:06 +00:00
parent 024b5a372d
commit 4f1efedec9
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ Python versions::
| 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 |