Thanks to visit codestin.com Credit goes to github.com
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 c377fe2 commit b296d09Copy full SHA for b296d09
1 file changed
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