Oops, "" should be b"" for PyString in last column.
This commit is contained in:
parent
024b5a372d
commit
4f1efedec9
|
@ -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 |
|
||||
|
|
Loading…
Reference in New Issue