diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-06-24 14:37:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-06-24 14:37:26 (GMT) |
commit | e109c70860ceb4102a84c32d4bda4e5025eaf92a (patch) | |
tree | 1924a1728b34a81dd1dc3890230be4aae0c44f68 /Misc/NEWS | |
parent | 947d6b044454eebef483f2e520aa57ea86053689 (diff) | |
download | cpython-e109c70860ceb4102a84c32d4bda4e5025eaf92a.zip cpython-e109c70860ceb4102a84c32d4bda4e5025eaf92a.tar.gz cpython-e109c70860ceb4102a84c32d4bda4e5025eaf92a.tar.bz2 |
give the names of missing positional or keyword-only arguments (closes #12356)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #12356: When required positional or keyword-only arguments are not + given, produce a informative error message which includes the name(s) of the + missing arguments. + - Issue #12370: Fix super with not arguments when __class__ is overriden in the class body. |