Author rhettinger
Recipients
Date 2005-02-01.20:13:54
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=80475

I have no doubt that there are good use cases, your included.

The two issues are that it would complicate the snot out of
parsing (not a good thing) and that allowing keywords in
non-keyword roles would throw-off many existing tools (esp.
syntax highlighters).  

In addition, human eye parsing also suffers when keywords
can be used in non-keyword roles.  IOW, readability suffers.

For your app, it is a reasonable solution to wrap your code
with in preprocessing that converts keywords to non-keywords:

    s = s.replace('class=', '_class=')
History
Date User Action Args
2007-08-23 14:29:17adminlinkissue1113984 messages
2007-08-23 14:29:17admincreate