1use std::marker::PhantomData;
23use crate::Python;
45/// A marker type that makes the type !Send.
6/// Workaround for lack of !Send on stable (<https://github.com/rust-lang/rust/issues/68318>).
7pub(crate) struct NotSend(PhantomData<*mut Python<'static>>);