diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-03-27 15:31:43 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-03-27 15:31:43 (GMT) |
commit | a5d63dd7b880dd38282ad52f52e3579f965b20e0 (patch) | |
tree | b274d50a58057775bea3521a5622ab8f571b565b /Doc | |
parent | 21e83a5564862d2a6d336c2896070ba5539bddcd (diff) | |
download | cpython-a5d63dd7b880dd38282ad52f52e3579f965b20e0.zip cpython-a5d63dd7b880dd38282ad52f52e3579f965b20e0.tar.gz cpython-a5d63dd7b880dd38282ad52f52e3579f965b20e0.tar.bz2 |
inspect.signature: Make Signature and Parameter picklable. Closes #20726
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index b18bcd2..c94102d 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -137,6 +137,9 @@ Improved Modules * :class:`xmlrpc.client.ServerProxy` is now a :term:`context manager` (contributed by Claudiu Popa in :issue:`20627`). +* :class:`inspect.Signature` and :class:`inspect.Parameter` are now + picklable (contributed by Yury Selivanov in :issue:`20726`). + Optimizations ============= |