Earlier quoted context omitted.
Python allows the overriding of just about every operator. For Pathlib they overrode the division operator to instead perform path addition in a platform agnostic manner.
> Python allows the overriding of just about every operator. Except the boolean operators (and, or, not). For instance __and__ overrides the binary and (&), not the boolean and.
[1] https://docs.python.org/3/reference/datamodel.html#object.__...