changeset: 104229:40d7ce58ebd0 branch: 3.5 parent: 104224:258ebc539b2e user: Serhiy Storchaka date: Sun Oct 02 10:36:33 2016 +0300 files: Lib/test/test_extcall.py description: Issue #28257: Backported a test. diff -r 258ebc539b2e -r 40d7ce58ebd0 Lib/test/test_extcall.py --- a/Lib/test/test_extcall.py Sun Oct 02 08:34:53 2016 +0300 +++ b/Lib/test/test_extcall.py Sun Oct 02 10:36:33 2016 +0300 @@ -233,6 +233,11 @@ ... 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): ...