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 py.user
Recipients docs@python, py.user
Date 2012-05-03.22:18:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336083515.09.0.187983865633.issue14717@psf.upfronthosting.co.za>
In-reply-to
Content
>>> g
<generator object f at 0xb74d257c>
>>> print(g.close.__doc__)
close(arg) -> raise GeneratorExit inside generator.
>>> g.close(1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: close() takes no arguments (1 given)
>>>
History
Date User Action Args
2012-05-03 22:18:35py.usersetrecipients: + py.user, docs@python
2012-05-03 22:18:35py.usersetmessageid: <1336083515.09.0.187983865633.issue14717@psf.upfronthosting.co.za>
2012-05-03 22:18:34py.userlinkissue14717 messages
2012-05-03 22:18:34py.usercreate