[Python-checkins] r71348 - python/branches/py3k/Doc/reference/datamodel.rst

raymond.hettinger python-checkins at python.org
Tue Apr 7 04:09:15 CEST 2009


Author: raymond.hettinger
Date: Tue Apr  7 04:09:15 2009
New Revision: 71348

Log:
Fix internal link.

Modified:
   python/branches/py3k/Doc/reference/datamodel.rst

Modified: python/branches/py3k/Doc/reference/datamodel.rst
==============================================================================
--- python/branches/py3k/Doc/reference/datamodel.rst	(original)
+++ python/branches/py3k/Doc/reference/datamodel.rst	Tue Apr  7 04:09:15 2009
@@ -1541,8 +1541,8 @@
 property creation, proxies, frameworks, and automatic resource
 locking/synchronization.
 
-Here is an example of a metaclass that uses an :class:`OrderedDict` to
-remember the order that class members were defined::
+Here is an example of a metaclass that uses an :class:`collections.OrderedDict`
+to remember the order that class members were defined::
 
     class OrderedClass(type):
 


More information about the Python-checkins mailing list