]> granicus.if.org Git - python/commitdiff
Closes #13867: remove untrue comment about PyWeakref_Check().
authorGeorg Brandl <georg@python.org>
Tue, 8 Oct 2013 17:50:26 +0000 (19:50 +0200)
committerGeorg Brandl <georg@python.org>
Tue, 8 Oct 2013 17:50:26 +0000 (19:50 +0200)
Include/weakrefobject.h

index 537e7ebf28781222e0afd69b1923b4aa7506c44e..17051568f3a6e9880a7ceae50b85088f179edf37 100644 (file)
@@ -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))