summaryrefslogtreecommitdiff
path: root/Doc/library/enum.rst
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2014-02-10 04:26:10 -0800
committerLarry Hastings <larry@hastings.org>2014-02-10 04:26:10 -0800
commitb0120186eb4e772b62013723786cff19a97a9ee6 (patch)
tree0fe7a43c3d52984fbb2a79d38b35b5df8680e8a6 /Doc/library/enum.rst
parent780190bd786d19bc9f4d674c9ba3bf6ffd160204 (diff)
downloadcpython-b0120186eb4e772b62013723786cff19a97a9ee6.tar.gz
Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.
Diffstat (limited to 'Doc/library/enum.rst')
-rw-r--r--Doc/library/enum.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 7f800e36a0..bce49660ef 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -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::