From: ThoML Date: 2008-07-02T12:47:09+09:00 Subject: Re: nested methods good or bad design > 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().