Use '' instead of "" for repr, as that is the default repr.
This commit is contained in:
parent
89b4ee311a
commit
82dcb0728d
|
@ -82,9 +82,9 @@ Python versions::
|
|||
+--------------+-------------+------------+--------------------+
|
||||
| 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 |
|
||||
+--------------+-------------+------------+--------------------+
|
||||
|
|
Loading…
Reference in New Issue