There's __and__ and __or__ for & and | respectively, are there modifiable dunders for and and or too?
If so, I can't seem to find them. They are not listed on the docs here: https://docs.python.org/3/reference/datamodel.html
Context: making an api where I want people to be able to do foo and bar and jar, instead of having to do method(method(foo, bar),jar). I can still use & and | but just curious, would prefer the readability of and and or