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.
1 parent f37b054 commit 9583c5eCopy full SHA for 9583c5e
src/lazy_object_proxy/cext.c
@@ -225,8 +225,8 @@ static PyObject *Proxy_str(ProxyObject *self)
225
static PyObject *Proxy_fspath(ProxyObject *self)
226
{
227
Proxy__ENSURE_WRAPPED_OR_RETURN_NULL(self);
228
- PyObject *func = NULL;
229
- PyObject *fspath = NULL;
+ PyObject *func;
+ PyObject *fspath;
230
231
if (PyUnicode_Check(self->wrapped) || PyBytes_Check(self->wrapped)) {
232
Py_INCREF(self->wrapped);
0 commit comments