Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.

This commit is contained in:
Larry Hastings 2014-02-10 04:26:10 -08:00
parent 8f9f0f12e8
commit ad88d7a26b
5 changed files with 13 additions and 13 deletions

View file

@ -30,7 +30,7 @@ one decorator, :func:`unique`.
.. class:: Enum
Base class for creating enumerated constants. See section
:ref:`Functional API` for an alternate construction syntax.
`Functional API`_ for an alternate construction syntax.
.. class:: IntEnum
@ -421,7 +421,7 @@ The solution is to specify the module name explicitly as follows::
>>> Animals = Enum('Animals', 'ant bee cat dog', module=__name__)
The new pickle protocol 4 also, in some circumstances, relies on
:attr:``__qualname__`` being set to the location where pickle will be able
:attr:`__qualname__` being set to the location where pickle will be able
to find the class. For example, if the class was made available in class
SomeData in the global scope::