| 715 | #[derive(Debug, PyPayload)] |
| 716 | #[allow(dead_code)] |
| 717 | pub struct TypeVarTuple { |
| 718 | name: PyObjectRef, |
| 719 | default_value: PyMutex<PyObjectRef>, |
| 720 | evaluate_default: PyMutex<PyObjectRef>, |
| 721 | } |
| 722 | #[pyclass( |
| 723 | flags(HAS_DICT, HAS_WEAKREF), |
| 724 | with(Constructor, Representable, Iterable) |
no outgoing calls