summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-04-08 15:46:50 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-04-08 15:46:50 (GMT)
commit67ae50ee1c723db3a0d9fb22fc182dc1854fb137 (patch)
treeabda69bbb3afcac6d6e386bd2ff2fc2f27c48336 /Doc/whatsnew
parent3f73ca23cfe4e4058689bc5a46622c68ef1b6aa6 (diff)
downloadcpython-67ae50ee1c723db3a0d9fb22fc182dc1854fb137.zip
cpython-67ae50ee1c723db3a0d9fb22fc182dc1854fb137.tar.gz
cpython-67ae50ee1c723db3a0d9fb22fc182dc1854fb137.tar.bz2
inspect: Make Signature and Parameter hashable. Issue #20334.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.5.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index 76b65a4..7050e0a 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -143,7 +143,8 @@ Improved Modules
(contributed by Claudiu Popa in :issue:`20627`).
* :class:`inspect.Signature` and :class:`inspect.Parameter` are now
- picklable (contributed by Yury Selivanov in :issue:`20726`).
+ picklable and hashable (contributed by Yury Selivanov in :issue:`20726`
+ and :issue:`20334`).
* New class method :meth:`inspect.Signature.from_callable`, which makes
subclassing of :class:`~inspect.Signature` easier (contributed