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 martin.panter
Recipients benjamin.peterson, candide, martin.panter, mrabarnett, scoder, serhiy.storchaka, steven.daprano
Date 2015-07-12.00:23:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1436660624.47.0.91784003898.issue24612@psf.upfronthosting.co.za>
In-reply-to
Content
BTW “yield” is not a fair comparison because its syntax is even stranger (due to originally being a “yield” statement):

def g():
    x = yield + 1  # Yield the value +1
    y = (yield) + 1  # Add 1 after yielding
    return (yield)  # Mandatory brackets
History
Date User Action Args
2015-07-12 00:23:44martin.pantersetrecipients: + martin.panter, scoder, benjamin.peterson, mrabarnett, steven.daprano, serhiy.storchaka, candide
2015-07-12 00:23:44martin.pantersetmessageid: <1436660624.47.0.91784003898.issue24612@psf.upfronthosting.co.za>
2015-07-12 00:23:44martin.panterlinkissue24612 messages
2015-07-12 00:23:43martin.pantercreate