From: "krusty.ar@..." Date: 2008-07-02T22:17:09+09:00 Subject: Re: nested methods good or bad design On Jul 2, 12:49 am, ThoML wrote: > > Maybe I'm not understanding what you are > > reffering to as nested methods or "same level", what can you do in > > phyton or scheme that behaves different from this? > >>> def a(): > > ...     def b(): > ...         print(1) > ...     b() > ...>>> a() > 1 > >>> b() > > Traceback (most recent call last): >   File "", line 1, in > NameError: name 'b' is not defined > > b() is not accessible from outside of a(). Y get it, it's as if each method defines a namespace, can youdosomething like a()::b() from ouside a? Lucas.