diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2016-09-08 22:11:11 (GMT) |
---|---|---|
committer | Eric Snow <ericsnowcurrently@gmail.com> | 2016-09-08 22:11:11 (GMT) |
commit | 4f29e75289592991efcc65a96a2a4a995417b76e (patch) | |
tree | b6d0019f076909e11633cadc468a7822124965a3 /Doc/reference/datamodel.rst | |
parent | 7f730cf01d161f2d1793372a0852788ad5f4acb1 (diff) | |
download | cpython-4f29e75289592991efcc65a96a2a4a995417b76e.zip cpython-4f29e75289592991efcc65a96a2a4a995417b76e.tar.gz cpython-4f29e75289592991efcc65a96a2a4a995417b76e.tar.bz2 |
Issue #24254: Drop cls.__definition_order__.
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r-- | Doc/reference/datamodel.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 00785ed..a075503 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1752,13 +1752,6 @@ additional keyword arguments, if any, come from the class definition). If the metaclass has no ``__prepare__`` attribute, then the class namespace is initialised as an empty ordered mapping. -.. impl-detail:: - - In CPython the default is :class:`collections.OrderedDict`. - -.. versionchanged:: 3.6 - Defaults to :class:`collections.OrderedDict` instead of :func:`dict`. - .. seealso:: :pep:`3115` - Metaclasses in Python 3000 |