(
&self,
it: impl Iterator<Item = Self::Value>,
)
| 434 | Ok(set.into()) |
| 435 | } |
| 436 | fn make_frozenset( |
| 437 | &self, |
| 438 | it: impl Iterator<Item = Self::Value>, |
| 439 | ) -> Result<Self::Value, marshal::MarshalError> { |
| 440 | Ok(PyFrozenSet::from_iter(self.0, it) |
| 441 | .unwrap() |
| 442 | .to_pyobject(self.0)) |
| 443 | } |
| 444 | fn make_dict( |
| 445 | &self, |
| 446 | it: impl Iterator<Item = (Self::Value, Self::Value)>, |
nothing calls this directly
no test coverage detected