(source: &str)
| 256 | } |
| 257 | |
| 258 | fn unbound_callable_and_empty_args(source: &str) -> (Py<PyAny>, Py<PyTuple>) { |
| 259 | Python::with_gil(|py| (eval_callable(py, source).unbind(), empty_args(py).unbind())) |
| 260 | } |
| 261 | |
| 262 | #[test] |
| 263 | fn go_rejects_non_spec_input_why_boundary_type_contract_must_fail_fast() { |