From: Serhiy Storchaka Date: Sun, 2 Oct 2016 07:36:33 +0000 (+0300) Subject: Issue #28257: Backported a test. X-Git-Tag: v3.6.0b2~71^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6498e5270e38ea9f7d868359fa6b29c8d613e77b;p=python Issue #28257: Backported a test. --- diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index 5eea37989c..420f12287b 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -233,6 +233,11 @@ What about willful misconduct? ... TypeError: h() argument after * must be an iterable, not function + >>> h(1, *h) + Traceback (most recent call last): + ... + TypeError: h() argument after * must be an iterable, not function + >>> dir(*h) Traceback (most recent call last): ...