MCPcopy Create free account
hub / github.com/YuminosukeSato/ironkernel / empty_args

Function empty_args

src/python/py_runtime.rs:249–251  ·  view source on GitHub ↗
(py: Python<'py>)

Source from the content-addressed store, hash-verified

247 use std::time::Duration;
248
249 fn empty_args<'py>(py: Python<'py>) -> Bound<'py, PyTuple> {
250 PyTuple::empty(py)
251 }
252
253 fn eval_callable<'py>(py: Python<'py>, source: &str) -> Bound<'py, PyAny> {
254 let source = CString::new(source).unwrap();

Calls

no outgoing calls