TIL 2020-08-06
-
Python’s
raise
statement has afrom
clause - This preserves full tracebacks when re-raising exceptions, providing better debugging information. -
The Python
raise
statement documentation - Official documentation covering all forms of the raise statement including exception chaining.