We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
python_parse
1 parent 4269416 commit d60dc16Copy full SHA for d60dc16
crates/jiter/src/python.rs
@@ -44,7 +44,7 @@ impl PythonParse {
44
/// # Returns
45
///
46
/// A [PyObject](https://docs.rs/pyo3/latest/pyo3/type.PyObject.html) representing the parsed JSON value.
47
- pub fn python_parse<'py>(self, py: Python<'py>, json_data: &[u8]) -> JsonResult<Bound<'py, PyAny>> {
+ pub fn python_parse<'py>(&self, py: Python<'py>, json_data: &[u8]) -> JsonResult<Bound<'py, PyAny>> {
48
macro_rules! ppp {
49
($string_cache:ident, $key_check:ident, $parse_number:ident) => {
50
PythonParser::<$string_cache, $key_check, $parse_number>::parse(
0 commit comments