From 5f5f6308975d76554804164274fbf25c0d059f32 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 26 Jun 2002 21:52:26 +0000 Subject: [PATCH] Fix various typos reported to python-docs. --- Doc/ref/refa1.tex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Doc/ref/refa1.tex b/Doc/ref/refa1.tex index bf40c2db72f6..60a57414b44f 100644 --- a/Doc/ref/refa1.tex +++ b/Doc/ref/refa1.tex @@ -160,10 +160,10 @@ No feature description will ever be deleted from \module{__future__}. \section{Nested scopes \label{nested-scopes}} \indexii{nested}{scopes} -This section defines the new scoping semantics that will be introduced -in Python 2.2. They are available in Python 2.1 by using the future +This section defines the new scoping semantics that were introduced +in Python 2.2. They were available in Python 2.1 by using the future statement \samp{nested_scopes}. This section begins with a bit of -terminology. +terminology. \subsection{Definitions and rules \label{definitions}} @@ -177,7 +177,7 @@ a unit. The following are blocks: a module, a function body, and a class definition. A \dfn{scope} defines the visibility of a name within a block. If a -local variable is defined in a block, it's scope includes that block. +local variable is defined in a block, its scope includes that block. If the definition occurs in a function block, the scope extends to any blocks contained within the defining one, unless a contained block introduces a different binding for the name. The scope of names -- 2.47.3