This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients Stefan Pochmann, r.david.murray
Date 2017-07-28.17:07:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1501261673.24.0.0735683261231.issue31071@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the report.  Retitling because this has nothing to do with map:

>>> def foo(*args):
...     raise TypeError('fake')
...     yield 1
... 
>>> foo(1, *foo())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: foo() argument after * must be an iterable, not generator
>>> foo(*foo())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 2, in foo
TypeError: fake
History
Date User Action Args
2017-07-28 17:07:53r.david.murraysetrecipients: + r.david.murray, Stefan Pochmann
2017-07-28 17:07:53r.david.murraysetmessageid: <1501261673.24.0.0735683261231.issue31071@psf.upfronthosting.co.za>
2017-07-28 17:07:53r.david.murraylinkissue31071 messages
2017-07-28 17:07:53r.david.murraycreate