From 229ee0657310746d460bb552cba8e0cacc48bcf8 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Wed, 27 Jul 2016 19:49:51 +0300 Subject: [PATCH] PEP 520: Remove duplicate word 'namespace' (#62) --- pep-0520.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0520.txt b/pep-0520.txt index 3b383dec6..122992264 100644 --- a/pep-0520.txt +++ b/pep-0520.txt @@ -66,7 +66,7 @@ is executed within a namespace. Currently that namespace defaults to ``dict``. If the metaclass defines ``__prepare__()`` then the result of calling it is used for the class definition namespace. -After the execution completes, the definition namespace namespace is +After the execution completes, the definition namespace is copied into a new ``dict``. Then the original definition namespace is discarded. The new copy is stored away as the class's namespace and is exposed as ``__dict__`` through a read-only proxy.