summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-08 17:50:26 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-08 17:50:26 (GMT)
commitb296d096245e99eef774a77918f3a6950edde52b (patch)
tree87f6145f48f279c52a9060378261a360189f7049 /Include
parentc377fe2b968f8e1a5f276063a41cd4df75d4af2f (diff)
downloadcpython-b296d096245e99eef774a77918f3a6950edde52b.zip
cpython-b296d096245e99eef774a77918f3a6950edde52b.tar.gz
cpython-b296d096245e99eef774a77918f3a6950edde52b.tar.bz2
Closes #13867: remove untrue comment about PyWeakref_Check().
Diffstat (limited to 'Include')
-rw-r--r--Include/weakrefobject.h3
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))