File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,8 @@ The column of Python Expressions illustrates the expressions that will be suppor
8686[[C++ Expression][Python Method Name][C++ Implementation][Python Expression (primary, secondary)]]
8787[[`self == r`][`__eq__`][`x == y`][`x == y`, `y == x`]]
8888[[`l == self`][`__eq__`][`y == x`][`y == x`, `x == y`]]
89- [[`self != r`][`__nq__ `][`x != y`][`x != y`, `y != x`]]
90- [[`l != self`][`__nq__ `][`y != x`][`y != x`, `x != y`]]
89+ [[`self != r`][`__ne__ `][`x != y`][`x != y`, `y != x`]]
90+ [[`l != self`][`__ne__ `][`y != x`][`y != x`, `x != y`]]
9191[[`self < r`][`__lt__`][`x < y`][`x < y`, `y > x`]]
9292[[`l < self`][`__gt__`][`y < x`][`y > x`, `x < y`]]
9393[[`self > r`][`__gt__`][`x > y`][`x > y`, `y < x`]]
You can’t perform that action at this time.
0 commit comments