On 12 February 2010 08:58, Steffen Schwigon wrote:
> Fergal Daly writes:
>> BTW, python gets this right
>>
>> from Foo.Bar import Buzz
>> ...
>> Buzz.ThatThingIWanted
>>
>> no danger of name clashes (you can import Buzz as some other name if
>> there's another Buzz to import) and when reading the
Fergal Daly writes:
> BTW, python gets this right
>
> from Foo.Bar import Buzz
> ...
> Buzz.ThatThingIWanted
>
> no danger of name clashes (you can import Buzz as some other name if
> there's another Buzz to import) and when reading the code, you know
> where every symbol originates. I started imp