use crate::ffi_ptr_ext::FfiPtrExt;
#[allow(deprecated)]
use crate::ToPyObject;
use crate::{
ffi, types::any::PyAnyMethods, Borrowed, Bound, IntoPy, PyAny, PyObject, PyTypeInfo, Python,
};
#[repr(transparent)]
pub struct PyNone(PyAny);
pyobject_native_type_named!(PyNone);
impl PyNone {
#[inline]
pub fn get(py: Python<'_>) -> Borrowed<'_, '_, PyNone> {
unsafe { ffi::Py_None().assume_borrowed(py).downcast_unchecked() }
}
#[deprecated(since = "0.23.0", note = "renamed to `PyNone::get`")]
#[inline]
pub fn get_bound(py: Python<'_>) -> Borrowed<'_, '_, PyNone> {
Self::get(py)
}
}
unsafe impl PyTypeInfo for PyNone {
const NAME: &'static str = "NoneType";
const MODULE: Option<&'static str> = None;
fn type_object_raw(_py: Python<'_>) -> *mut ffi::PyTypeObject {
unsafe { ffi::Py_TYPE(ffi::Py_None()) }
}
#[inline]
fn is_type_of(object: &Bound<'_, PyAny>) -> bool {
Self::is_exact_type_of(object)
}
#[inline]
fn is_exact_type_of(object: &Bound<'_, PyAny>) -> bool {
object.is(&**Self::get(object.py()))
}
}
#[allow(deprecated)]
impl ToPyObject for () {
fn to_object(&self, py: Python<'_>) -> PyObject {
PyNone::get(py).into_py(py)
}
}
impl IntoPy<PyObject> for () {
#[inline]
fn into_py(self, py: Python<'_>) -> PyObject {
PyNone::get(py).into_py(py)
}
}
#[cfg(test)]
mod tests {
use crate::types::any::PyAnyMethods;
use crate::types::{PyDict, PyNone};
use crate::{IntoPy, PyObject, PyTypeInfo, Python};
#[test]
fn test_none_is_itself() {
Python::with_gil(|py| {
assert!(PyNone::get(py).is_instance_of::<PyNone>());
assert!(PyNone::get(py).is_exact_instance_of::<PyNone>());
})
}
#[test]
fn test_none_type_object_consistent() {
Python::with_gil(|py| {
assert!(PyNone::get(py).get_type().is(&PyNone::type_object(py)));
})
}
#[test]
fn test_none_is_none() {
Python::with_gil(|py| {
assert!(PyNone::get(py).downcast::<PyNone>().unwrap().is_none());
})
}
#[test]
#[allow(deprecated)]
fn test_unit_to_object_is_none() {
use crate::ToPyObject;
Python::with_gil(|py| {
assert!(().to_object(py).downcast_bound::<PyNone>(py).is_ok());
})
}
#[test]
fn test_unit_into_py_is_none() {
Python::with_gil(|py| {
let obj: PyObject = ().into_py(py);
assert!(obj.downcast_bound::<PyNone>(py).is_ok());
})
}
#[test]
fn test_dict_is_not_none() {
Python::with_gil(|py| {
assert!(PyDict::new(py).downcast::<PyNone>().is_err());
})
}
}