File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments