(&self)
| 378 | #[cfg(feature = "python27-sys")] |
| 379 | #[inline] |
| 380 | pub fn as_basestring(&self) -> &PyString { |
| 381 | unsafe { self.0.unchecked_cast_as() } |
| 382 | } |
| 383 | |
| 384 | /// Converts from `PyBytes` to `PyString`. |
| 385 | /// This method is only available on Python 2. |
nothing calls this directly
no test coverage detected