diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-01-31 19:48:37 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-01-31 19:48:37 (GMT) |
commit | 63da7c7b0ca728a41b6269c4678392efb7f26625 (patch) | |
tree | 0e6f6d57448161a2faf9d3b00a40c57664432086 /Misc/NEWS | |
parent | 4ded1f35532b7da37df2bba37a7ad32334349270 (diff) | |
download | cpython-63da7c7b0ca728a41b6269c4678392efb7f26625.zip cpython-63da7c7b0ca728a41b6269c4678392efb7f26625.tar.gz cpython-63da7c7b0ca728a41b6269c4678392efb7f26625.tar.bz2 |
inspect.signature: Support duck-types of Python functions (Cython, for instance) #17159
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ Core and Builtins Library ------- +- Issue #17159: inspect.signature now accepts duck types of functions, + which adds support for Cython functions. Initial patch by Stefan Behnel. + - Issue #18801: Fix inspect.classify_class_attrs to correctly classify object.__new__ and object.__init__. |