Missed a ref to the old API in PEP 422

This commit is contained in:
Nick Coghlan 2013-03-05 22:32:26 +10:00
parent f6cc8f4a1f
commit fe1f501b5a
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ function as a ``namespace`` keyword-only argument. If present, the value
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):