[Python-checkins] cpython (merge 3.2 -> default): merge with 3.2

sandro.tosi python-checkins at python.org
Tue Feb 28 22:35:44 CET 2012


http://hg.python.org/cpython/rev/d4b17c478e49
changeset:   75332:d4b17c478e49
parent:      75330:ce0b9b1328d4
parent:      75331:8de95f3b2404
user:        Sandro Tosi <sandro.tosi at gmail.com>
date:        Tue Feb 28 22:29:08 2012 +0100
summary:
  merge with 3.2

files:
  Doc/library/operator.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -340,7 +340,7 @@
 +-----------------------+-------------------------+---------------------------------------+
 | Containment Test      | ``obj in seq``          | ``contains(seq, obj)``                |
 +-----------------------+-------------------------+---------------------------------------+
-| Division              | ``a / b``               | ``div(a, b)``                         |
+| Division              | ``a / b``               | ``truediv(a, b)``                     |
 +-----------------------+-------------------------+---------------------------------------+
 | Division              | ``a // b``              | ``floordiv(a, b)``                    |
 +-----------------------+-------------------------+---------------------------------------+

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list