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: PyNumber_And() 's description
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: rhettinger, ymasuda
Priority: normal Keywords:

Created on 2004-04-17 09:03 by ymasuda, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg20520 - (view) Author: [N/A] (ymasuda) Date: 2004-04-17 09:03
In Doc/api/abstract.tex of HEAD branch, at l.520 around, 
It describes ::

\begin{cfuncdesc}{PyObject*}{PyNumber_And}
{PyObject *o1, PyObject *o2}
  Returns the ``bitwise and'' of \var{o2} and \var{o2} 
on success and ...

but the former \var{o2} appears to be a typo of \var
{o1}. Thus,

  Returns the ``bitwise and'' of \var{o1} and \var{o2} 
on success and ...

should be appropriate.

Thanks
msg20521 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2004-04-17 11:59
Logged In: YES 
user_id=80475

Fixed.

Thanks for the bug report.
History
Date User Action Args
2022-04-11 14:56:03adminsetgithub: 40161
2004-04-17 09:03:09ymasudacreate