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 62d0c00 commit 6199102Copy full SHA for 6199102
Objects/weakrefobject.c
@@ -628,11 +628,11 @@ _proxy_unwrap(PyObject **op, int *did_incref)
628
#define WRAP_METHOD(method, SPECIAL) \
629
static PyObject * \
630
method(PyObject *proxy, PyObject *Py_UNUSED(ignored)) { \
631
- UNWRAP(proxy); \
632
- PyObject* res = PyObject_CallMethodNoArgs(proxy, &_Py_ID(SPECIAL)); \
633
- Py_DECREF(proxy); \
634
- return res; \
635
- }
+ UNWRAP(proxy); \
+ PyObject* res = PyObject_CallMethodNoArgs(proxy, &_Py_ID(SPECIAL)); \
+ Py_DECREF(proxy); \
+ return res; \
+ }
636
637
638
/* direct slots */
0 commit comments