diff options
author | Raymond Hettinger <python@rcn.com> | 2013-05-11 02:57:44 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-05-11 02:57:44 (GMT) |
commit | 3f5228d402474bf629891f906a80050d4098e1a0 (patch) | |
tree | 20e935852ec78fa23c9b266470999c57064da24c /Doc/library | |
parent | 6832c81d5d2d730c38bab001e0c1b4b0569dd5ef (diff) | |
download | cpython-3f5228d402474bf629891f906a80050d4098e1a0.zip cpython-3f5228d402474bf629891f906a80050d4098e1a0.tar.gz cpython-3f5228d402474bf629891f906a80050d4098e1a0.tar.bz2 |
Issue #16694: Add source code link for operator.py
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/operator.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 650b3df..d01d33a 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -11,6 +11,9 @@ import operator from operator import itemgetter, iadd +**Source code:** :source:`Lib/operator.py` + +-------------- The :mod:`operator` module exports a set of efficient functions corresponding to the intrinsic operators of Python. For example, ``operator.add(x, y)`` is |