Make a note into a note directive. (#100)
This commit is contained in:
parent
4f8486bf81
commit
af44514f72
|
@ -11,6 +11,10 @@ Python-Version: 3.6
|
||||||
Post-History: 7-Jun-2016, 11-Jun-2016, 20-Jun-2016, 24-Jun-2016
|
Post-History: 7-Jun-2016, 11-Jun-2016, 20-Jun-2016, 24-Jun-2016
|
||||||
Resolution: https://mail.python.org/pipermail/python-dev/2016-June/145442.html
|
Resolution: https://mail.python.org/pipermail/python-dev/2016-June/145442.html
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
Since compact dict has landed in 3.6, __definition_order__
|
||||||
|
has been removed. ``cls.__dict__`` now mostly accomplishes the same
|
||||||
|
thing instead.
|
||||||
|
|
||||||
Abstract
|
Abstract
|
||||||
========
|
========
|
||||||
|
@ -36,10 +40,6 @@ Additionally, this PEP requires that the default class definition
|
||||||
namespace be ordered (e.g. ``OrderedDict``) by default. The long-
|
namespace be ordered (e.g. ``OrderedDict``) by default. The long-
|
||||||
lived class namespace (``__dict__``) will remain a ``dict``.
|
lived class namespace (``__dict__``) will remain a ``dict``.
|
||||||
|
|
||||||
Note: since compact dict has landed in 3.6, __definition_order__
|
|
||||||
has been removed. cls.__dict__ now mostly accomplishes the same
|
|
||||||
thing instead.
|
|
||||||
|
|
||||||
|
|
||||||
Motivation
|
Motivation
|
||||||
==========
|
==========
|
||||||
|
|
Loading…
Reference in New Issue