Closes #13867: remove untrue comment about PyWeakref_Check().
diff --git a/Include/weakrefobject.h b/Include/weakrefobject.h
index e46aecf..e7c0eae 100644
--- a/Include/weakrefobject.h
+++ b/Include/weakrefobject.h
@@ -49,9 +49,6 @@
         ((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))