[Python-checkins] peps: Missed a ref to the old API in PEP 422

nick.coghlan python-checkins at python.org
Tue Mar 5 13:32:36 CET 2013


http://hg.python.org/peps/rev/cbeb9952c038
changeset:   4784:cbeb9952c038
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Tue Mar 05 22:32:26 2013 +1000
summary:
  Missed a ref to the old API in PEP 422

files:
  pep-0422.txt |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/pep-0422.txt b/pep-0422.txt
--- a/pep-0422.txt
+++ b/pep-0422.txt
@@ -148,7 +148,7 @@
 provided as the ``namespace`` argument will be called without arguments
 to create the result of ``type.__prepare__`` instead of using a freshly
 created dictionary instance. For example, the following will use
-the ordered dictionary created in the header as the class namespace::
+an ordered dictionary as the class namespace::
 
    class OrderedExample(namespace=collections.OrderedDict):
        def __init_class__(cls):

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list