(self)
| 317 | #[allow(non_snake_case)] // the Python keyword starts with uppercase |
| 318 | #[inline] |
| 319 | pub fn None(self) -> PyObject { |
| 320 | unsafe { PyObject::from_borrowed_ptr(self, ffi::Py_None()) } |
| 321 | } |
| 322 | |
| 323 | /// Gets the Python builtin value `True`. |
| 324 | #[allow(non_snake_case)] // the Python keyword starts with uppercase |