Exceptions are generally considered _failures_, and/or events that prevent normal execution of code. In this library, what functions can acceptably raise an exception, and which ones should instead return a value (such as `False`)?
Exceptions are generally considered failures, and/or events that prevent normal execution of code.
In this library, what functions can acceptably raise an exception, and which ones should instead return a value (such as
False)?