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 mark.dickinson
Recipients brett.cannon, daniel.urban, mark.dickinson
Date 2012-11-24.08:46:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353746809.46.0.512801379186.issue16546@psf.upfronthosting.co.za>
In-reply-to
Content
Brett: can you clarify---in what sense is the argument optional?  I see that there's a doc issue at http://docs.python.org/dev/library/ast.html, where it's marked as optional but shouldn't but.  Is there something more that's wrong?

If you mean that ast.YieldFrom can be instantiated without an argument, isn't that the same for all the ast classes?

>>> ast.YieldFrom()
<_ast.YieldFrom object at 0x100760f50>
>>> ast.BoolOp()
<_ast.BoolOp object at 0x100760f90>
History
Date User Action Args
2012-11-24 08:46:49mark.dickinsonsetrecipients: + mark.dickinson, brett.cannon, daniel.urban
2012-11-24 08:46:49mark.dickinsonsetmessageid: <1353746809.46.0.512801379186.issue16546@psf.upfronthosting.co.za>
2012-11-24 08:46:49mark.dickinsonlinkissue16546 messages
2012-11-24 08:46:48mark.dickinsoncreate