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 larry
Recipients georg.brandl, larry, rmsr, serhiy.storchaka, zach.ware
Date 2014-01-18.22:14:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <52DAFCBB.8070101@hastings.org>
In-reply-to <1390079532.94.0.781627791967.issue20227@psf.upfronthosting.co.za>
Content
On 01/18/2014 01:12 PM, Ryan Smith-Roberts wrote:
> Ryan Smith-Roberts added the comment:
>
> I believe the feature you starred resolves this enhancement issue, in which case my patches are obsolete. And yes, the 'as' syntax makes a lot more sense. Here's how I hope it works (the arg parsing wrapper remains unchanged):
>
>     foo: int
> ...
> _impl(..., int foo)
>
> can become
>
>      foo: int as bar
> ...
> _impl(..., int bar)

Nope, not what I wanted.  I said "as" binds more tightly than ":":

    foo as bar: int

But if you're dropping the patch I guess it's irrelevant.

//arry/
History
Date User Action Args
2014-01-18 22:14:33larrysetrecipients: + larry, georg.brandl, rmsr, zach.ware, serhiy.storchaka
2014-01-18 22:14:33larrylinkissue20227 messages
2014-01-18 22:14:33larrycreate