Represents a Python string. Corresponds to `basestring` in Python 2, and `str` in Python 3.
| 29 | /// Represents a Python string. |
| 30 | /// Corresponds to `basestring` in Python 2, and `str` in Python 3. |
| 31 | pub struct PyString(PyObject); |
| 32 | |
| 33 | #[cfg(feature = "python27-sys")] |
| 34 | pyobject_newtype!(PyString); |