(args: &[PyObjectRef])
| 120 | } |
| 121 | |
| 122 | fn count_placeholders(args: &[PyObjectRef]) -> usize { |
| 123 | args.iter().filter(|a| is_placeholder(a)).count() |
| 124 | } |
| 125 | |
| 126 | #[pyattr] |
| 127 | #[pyclass(name = "partial", module = "functools")] |
no test coverage detected