Re: Python v3.1.2 documentation question

2010-07-02 Thread Ethan Furman
Terry Reedy wrote: On 7/1/2010 6:42 PM, Ethan Furman wrote: Hmmm Well, as this is my first ever bug post (yay! ;) Great! > I *think* this is what you want: http://bugs.python.org/issue9121 I believe Benjamin meant that it was already fixed in http://docs.python.org/dev/py3k/ whic

Re: Python v3.1.2 documentation question

2010-07-01 Thread Terry Reedy
On 7/1/2010 6:42 PM, Ethan Furman wrote: Hmmm Well, as this is my first ever bug post (yay! ;) Great! > I *think* this is what you want: http://bugs.python.org/issue9121 I believe Benjamin meant that it was already fixed in http://docs.python.org/dev/py3k/ which is currently the 3.2a0

Re: Python v3.1.2 documentation question

2010-07-01 Thread Aahz
In article , Ethan Furman wrote: >Aahz wrote: >> In article , >> Ethan Furman wrote: >>> Stephen Hansen wrote: On 6/29/10 10:01 AM, Ethan Furman wrote: > In the glossary section it states: > > > nested scope > > The ability to refer to a variable in an enclosing de

Re: Python v3.1.2 documentation question

2010-07-01 Thread Ethan Furman
Aahz wrote: In article , Ethan Furman wrote: Stephen Hansen wrote: On 6/29/10 10:01 AM, Ethan Furman wrote: In the glossary section it states: nested scope The ability to refer to a variable in an enclosing definition. For instance, a function defined inside another function can refer to

Re: Python v3.1.2 documentation question

2010-07-01 Thread Aahz
In article , Ethan Furman wrote: >Stephen Hansen wrote: >> On 6/29/10 10:01 AM, Ethan Furman wrote: >>> In the glossary section it states: >>> >>> >>> nested scope >>> >>> The ability to refer to a variable in an enclosing definition. For >>> instance, a function defined inside another function

Re: Python v3.1.2 documentation question

2010-06-29 Thread Ethan Furman
Stephen Hansen wrote: On 6/29/10 10:01 AM, Ethan Furman wrote: In the glossary section it states: nested scope The ability to refer to a variable in an enclosing definition. For instance, a function defined inside another function can refer to variables in the outer function. Note that nested

Re: Python v3.1.2 documentation question

2010-06-29 Thread Stephen Hansen
On 6/29/10 10:01 AM, Ethan Furman wrote: In the glossary section it states: nested scope The ability to refer to a variable in an enclosing definition. For instance, a function defined inside another function can refer to variables in the outer function. Note that nested scopes work only for r