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 alex
Recipients Ramchandra Apte, alex, ezio.melotti, gvanrossum, ncoghlan, peter.otten, pitrou, serhiy.storchaka
Date 2013-08-20.15:20:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377012007.45.0.0795665512581.issue18788@psf.upfronthosting.co.za>
In-reply-to
Content
I suppose I'm one of the more qualified people to comment on how Ruby does it: a mess of hacks in the lexer/parser. Ruby's case is complicated by the fact that a bare `foo` can either be a local variable or a method call on self. Consider the case `a +b`, should that be parsed as a call to a with a unary + on b, or an addition? In Ruby this depends on whether `a` is already defined as a local. Basically I think this is a terrible idea, and would encourage as strongly as possible to not consider this.
History
Date User Action Args
2013-08-20 15:20:07alexsetrecipients: + alex, gvanrossum, ncoghlan, peter.otten, pitrou, ezio.melotti, Ramchandra Apte, serhiy.storchaka
2013-08-20 15:20:07alexsetmessageid: <1377012007.45.0.0795665512581.issue18788@psf.upfronthosting.co.za>
2013-08-20 15:20:07alexlinkissue18788 messages
2013-08-20 15:20:07alexcreate