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.
2 parents 5e59676 + b296d09 commit 3328871Copy full SHA for 3328871
Include/weakrefobject.h
@@ -51,9 +51,6 @@ PyAPI_DATA(PyTypeObject) _PyWeakref_CallableProxyType;
51
((Py_TYPE(op) == &_PyWeakref_ProxyType) || \
52
(Py_TYPE(op) == &_PyWeakref_CallableProxyType))
53
54
-/* This macro calls PyWeakref_CheckRef() last since that can involve a
55
- function call; this makes it more likely that the function call
56
- will be avoided. */
57
#define PyWeakref_Check(op) \
58
(PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
59
0 commit comments