Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-02 03:09:01 +01:00 committed by GitHub
parent 9e382320c0
commit db19b5aae8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,11 +64,11 @@ if a != None:
| | | |
| ------------- |:-------------:|:-------------:|
| < | strictly less than | uses method: __lt__() |
|<= | less than or equal | uses method: __le__() |
|> | strictly greater than | uses method: __gt__() |
|>= | greater than or equal | uses method: __ge__() |
|== | equal | uses method: __eq__() |
| < | strictly less than | uses method: \_\_lt\_\_() |
|<= | less than or equal | uses method: \_\_le\_\_() |
|> | strictly greater than | uses method: \_\_gt\_\_() |
|>= | greater than or equal | uses method: \_\_ge\_\_() |
|== | equal | uses method: \_\_eq\_\_() |
|!= | not equal | |
|is | object identity | |
|is not | negated object identity | |