[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lexical environments
- From: Leo Razoumov <slonik.az@...>
- Date: Wed, 3 Feb 2010 08:19:38 -0500
On 2010-02-03, steve donovan <steve.j.donovan@gmail.com> wrote:
> We can look for 'from' (not a keyword!) but it's hard for a token
> filter to work backwards. It's possible to do it as a
> macro/tokenfiler if we write it like so:
>
> import math, string from _G
Or
from _G import math, string
This way 'from' is a reserved keyword.
--Leo--