This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: description of Decinal.logical_invert is incorrect
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 3.1, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, mft
Priority: normal Keywords:

Created on 2009-06-29 16:34 by mft, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg89862 - (view) Author: MATSUI Tetsushi (mft) Date: 2009-06-29 16:34
The library reference of Decimal.logical_invert:
   .. method:: logical_invert(other[, context])

      :meth:`logical_invert` is a logical operation.  The argument must
      be a *logical operand* (see :ref:`logical_operands_label`).  The
      result is the digit-wise inversion of the operand.

There should not be "other" argument, since it's an unary operation.
msg89933 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-06-30 16:15
Fixed in r73704.
History
Date User Action Args
2022-04-11 14:56:50adminsetgithub: 50625
2009-06-30 16:15:52georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg89933
2009-06-29 16:34:46mftcreate