(&self, s: PyStrRef)
| 109 | |
| 110 | #[pymethod] |
| 111 | fn new_from_str(&self, s: PyStrRef) -> PyJsValue { |
| 112 | PyJsValue::new(s.expect_str()) |
| 113 | } |
| 114 | |
| 115 | #[pymethod] |
| 116 | fn new_from_float(&self, n: PyRef<PyFloat>) -> PyJsValue { |
nothing calls this directly
no test coverage detected