From 3f5228d402474bf629891f906a80050d4098e1a0 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 10 May 2013 19:57:44 -0700 Subject: [PATCH] Issue #16694: Add source code link for operator.py --- Doc/library/operator.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 650b3df5df2..d01d33ab71d 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