summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2017-09-24 21:13:15 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2017-09-24 21:13:15 (GMT)
commitd38caf68bb417232fb0ccecb5558d7d0ca4a9507 (patch)
tree5141bf4acf8fae25ff92b62a64728137d186a034
parent415cc1fa57710614ed3384d0cafc58ccf7adee8c (diff)
downloadcpython-d38caf68bb417232fb0ccecb5558d7d0ca4a9507.zip
cpython-d38caf68bb417232fb0ccecb5558d7d0ca4a9507.tar.gz
cpython-d38caf68bb417232fb0ccecb5558d7d0ca4a9507.tar.bz2
[3.6] bpo-30085: Improve documentation for operator (GH-1171) (#3736)
The dunderless functions are preferred; dunder are retained for back compatilibity. Patch by Sanket Dasgupta. (cherry picked from commit 5b9299d8c72aeadccadd77e4b8132094ba9a1f96)
-rw-r--r--Doc/library/operator.rst7
-rw-r--r--Misc/NEWS.d/next/Documentation/2017-09-14-18-44-50.bpo-30085.0J9w-u.rst2
2 files changed, 6 insertions, 3 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 8121b48..60bf23a 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -17,9 +17,10 @@
The :mod:`operator` module exports a set of efficient functions corresponding to
the intrinsic operators of Python. For example, ``operator.add(x, y)`` is
-equivalent to the expression ``x+y``. The function names are those used for
-special class methods; variants without leading and trailing ``__`` are also
-provided for convenience.
+equivalent to the expression ``x+y``. Many function names are those used for
+special methods, without the double underscores. For backward compatibility,
+many of these have a variant with the double underscores kept. The variants
+without the double underscores are preferred for clarity.
The functions fall into categories that perform object comparisons, logical
operations, mathematical operations and sequence operations.
diff --git a/Misc/NEWS.d/next/Documentation/2017-09-14-18-44-50.bpo-30085.0J9w-u.rst b/Misc/NEWS.d/next/Documentation/2017-09-14-18-44-50.bpo-30085.0J9w-u.rst
new file mode 100644
index 0000000..c8be050
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2017-09-14-18-44-50.bpo-30085.0J9w-u.rst
@@ -0,0 +1,2 @@
+The operator functions without double underscores are preferred for clarity.
+The one with underscores are only kept for back-compatibility.