diff options
author | Georg Brandl <georg@python.org> | 2013-10-08 17:50:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-08 17:50:26 (GMT) |
commit | fe9e3b8e215c62cfcc4d8dc27bfd4586f8c6e4c2 (patch) | |
tree | 3743a09ac44fa4b00fe439e00c27f296a55be287 /Include | |
parent | 245c765d0a73e385ff00a982d2c60d0a96c94c74 (diff) | |
download | cpython-fe9e3b8e215c62cfcc4d8dc27bfd4586f8c6e4c2.zip cpython-fe9e3b8e215c62cfcc4d8dc27bfd4586f8c6e4c2.tar.gz cpython-fe9e3b8e215c62cfcc4d8dc27bfd4586f8c6e4c2.tar.bz2 |
Closes #13867: remove untrue comment about PyWeakref_Check().
Diffstat (limited to 'Include')
-rw-r--r-- | Include/weakrefobject.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/weakrefobject.h b/Include/weakrefobject.h index 537e7eb..1705156 100644 --- a/Include/weakrefobject.h +++ b/Include/weakrefobject.h @@ -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)) |