summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-08 18:29:47 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-08 18:29:47 (GMT)
commit3328871cace78e99736e44f167c287ba3bb5928d (patch)
tree17ac472a0f18a6824e6610dbef2e6247bef96f00 /Include
parent5e596769b025ce724e36aceeae52ce3c4c53c164 (diff)
parentb296d096245e99eef774a77918f3a6950edde52b (diff)
downloadcpython-3328871cace78e99736e44f167c287ba3bb5928d.zip
cpython-3328871cace78e99736e44f167c287ba3bb5928d.tar.gz
cpython-3328871cace78e99736e44f167c287ba3bb5928d.tar.bz2
merge heads
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))