diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-03-27 22:23:03 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-03-27 22:23:03 (GMT) |
commit | b1d060bf8b017d2a6cf6a0191b1451aeb27a5c03 (patch) | |
tree | e19a16da6d5952ecc45403722cc6f3d751320a8b /Misc | |
parent | 00abf385ac3b4b13aee66cbeb2a33604d8a871f5 (diff) | |
download | cpython-b1d060bf8b017d2a6cf6a0191b1451aeb27a5c03.zip cpython-b1d060bf8b017d2a6cf6a0191b1451aeb27a5c03.tar.gz cpython-b1d060bf8b017d2a6cf6a0191b1451aeb27a5c03.tar.bz2 |
inspect: Fix getcallargs() to raise correct TypeError
... for missing keyword-only arguments. Patch by Jeremiah Lowin.
Closes #20816.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -83,6 +83,9 @@ Library - Issue #19748: On AIX, time.mktime() now raises an OverflowError for year outsize range [1902; 2037]. +- Issue #20816: Fix inspect.getcallargs() to raise correct TypeError for + missing keyword-only arguments. Patch by Jeremiah Lowin. + Documentation ------------- |