From f79dc1c2e78fe98ffaa27084760166368dfa20a5 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 9 Oct 2002 16:14:19 +0000 Subject: [PATCH] Bug fix (thanks to Leonardo Rochael Almeida ). [SVN r15828] --- doc/v2/scope.html | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/doc/v2/scope.html b/doc/v2/scope.html index 5a6c4be2..61794628 100644 --- a/doc/v2/scope.html +++ b/doc/v2/scope.html @@ -64,11 +64,16 @@

Class scope

-

The scope class has an associated global Python object - which controls the Python namespace in which new extension classes and - wrapped functions will be defined as attributes. Default-constructing a - new scope object binds that object to the associated Python - object. Constructing a is associated with , and

+

The scope class has an associated global Python + object which controls the Python namespace in which new extension + classes and wrapped functions will be defined as + attributes. Default-constructing a new scope object + binds it to the associated global Python object. Constructing a + scope object with an argument changes the associated + global Python object to the one held by the argument, until the + lifetime of the scope object ends, at which time the + associated global Python object reverts to what it was before the + scope object was constructed.

Class scope synopsis