Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1ca407f

Browse files
committed
Fix the comments for bitwise and/or.
1 parent 0f4bbd2 commit 1ca407f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Include/abstract.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -559,9 +559,9 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
559559
PyObject *PyNumber_And Py_PROTO((PyObject *o1, PyObject *o2));
560560

561561
/*
562-
Returns the result of "anding" o2 and o2 on success and NULL
563-
on failure. This is the equivalent of the Python
564-
expression: o1 and o2.
562+
Returns the result of bitwise and of o1 and o2 on success, or
563+
NULL on failure. This is the equivalent of the Python
564+
expression: o1&o2.
565565
566566
567567
*/
@@ -579,9 +579,9 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
579579
PyObject *PyNumber_Or Py_PROTO((PyObject *o1, PyObject *o2));
580580

581581
/*
582-
Returns the result or o1 and o2 on success, or NULL on
583-
failure. This is the equivalent of the Python expression:
584-
o1 or o2.
582+
Returns the result of bitwise or or o1 and o2 on success, or
583+
NULL on failure. This is the equivalent of the Python
584+
expression: o1|o2.
585585
586586
*/
587587

0 commit comments

Comments
 (0)