(&self, code: CodeObject)
| 412 | self.0.ctx.new_tuple(elements.collect()).into() |
| 413 | } |
| 414 | fn make_code(&self, code: CodeObject) -> Self::Value { |
| 415 | self.0.ctx.new_code(code).into() |
| 416 | } |
| 417 | fn make_stop_iter(&self) -> Result<Self::Value, marshal::MarshalError> { |
| 418 | Ok(self.0.ctx.exceptions.stop_iteration.to_owned().into()) |
| 419 | } |