mirror of
https://github.com/python/cpython.git
synced 2026-02-05 09:25:35 +00:00
Closes #13867: remove untrue comment about PyWeakref_Check().
This commit is contained in:
parent
c377fe2b96
commit
b296d09624
1 changed files with 0 additions and 3 deletions
|
|
@ -51,9 +51,6 @@ PyAPI_DATA(PyTypeObject) _PyWeakref_CallableProxyType;
|
|||
((Py_TYPE(op) == &_PyWeakref_ProxyType) || \
|
||||
(Py_TYPE(op) == &_PyWeakref_CallableProxyType))
|
||||
|
||||
/* This macro calls PyWeakref_CheckRef() last since that can involve a
|
||||
function call; this makes it more likely that the function call
|
||||
will be avoided. */
|
||||
#define PyWeakref_Check(op) \
|
||||
(PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue