Represents a Python byte string. Corresponds to `str` in Python 2, and `bytes` in Python 3.
| 38 | /// Represents a Python byte string. |
| 39 | /// Corresponds to `str` in Python 2, and `bytes` in Python 3. |
| 40 | pub struct PyBytes(PyObject); |
| 41 | |
| 42 | pyobject_newtype!(PyBytes, PyBytes_Check, PyBytes_Type); |
| 43 |
nothing calls this directly
no outgoing calls
no test coverage detected