This test has been dead code since its introduction and does not get
executed by pytest due to starting with `text` rather than `test`. The
underlying data for this test is also non-trivial to update and
dependent on the specific Python version.
Since this is already dead code and is non-trivial to update, removing
this test more clearly reflects what happens with this dead code in
tests and prevents potential confusion due to its presence.
* fix: minor black formatting
* style: update CONTRIBUTORS.md
* fix: more black formatting
Default black with no arguments provided
---------
Co-authored-by: Darren Burns <darrenburns@users.noreply.github.com>
It turns out that we intentionally don't add such a whitespace at the beginning of the trace rendering, but we were actually doing so for the 2nd item of the stack rather than the 1st one
When an exception is raised using "from", the chained exception goes into
__cause__, which results in a different message using Python's native traceback
handler. This patch properly replicates that error message.