| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
None of these are particularly worrying as they either usually only leak reference (and not memory) or appear in rare or almost impossible error-paths, or are limited to the tests. Unfortunately, this PR will not apply to 1.20.x, due to small changes in the overrides. Backport of numpygh-18670 (with two small differences)
| "The `like` argument must be an array-like that " | ||
| "implements the `__array_function__` protocol."); | ||
| } | ||
| Py_DECREF(tmp_has_override); |
There was a problem hiding this comment.
This is the larger difference. The code path looks different on main. This is much like the diff just above.
Sorry, something went wrong.
| array_function_result = array_implement_c_array_function_creation( | ||
| "fromstring", args, keywds); | ||
| if (array_function_result != Py_NotImplemented) { | ||
| Py_XDECREF(descr); |
There was a problem hiding this comment.
I had already fixed that in the larger argument parsing, so this was also not part of the initial PR.
Sorry, something went wrong.
|
Thanks Sebastian. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Backport of gh-18670 (with two small differences)
None of these are particularly worrying as they either usually only
leak reference (and not memory) or appear in rare or almost impossible
error-paths, or are limited to the tests.
Unfortunately, this PR will not apply to 1.20.x, due to small changes
in the overrides.