diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-04-08 15:46:50 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-04-08 15:46:50 (GMT) |
commit | 67ae50ee1c723db3a0d9fb22fc182dc1854fb137 (patch) | |
tree | abda69bbb3afcac6d6e386bd2ff2fc2f27c48336 /Doc/whatsnew | |
parent | 3f73ca23cfe4e4058689bc5a46622c68ef1b6aa6 (diff) | |
download | cpython-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.rst | 3 |
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 |