diff options
-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 |