Issue 5982: Classmethod and staticmethod expose wrapped function with __func__.
diff --git a/Misc/NEWS b/Misc/NEWS
index 13be5e7..94405c5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 Core and Builtins
 -----------------
 
+- Issue #5982: staticmethod and classmethod now expose the wrapped
+  function with __func__.
+
 - Added support for multiple context managers in the same with-statement.
   Deprecated contextlib.nested() which is no longer needed.