Metadata-Version: 2.4
Name: good-luck
Version: 0.1.1
Summary: Add your description here
License-File: LICENSE
Requires-Python: >=2.7
Description-Content-Type: text/markdown

# good-luck

Strip away all function calls from tracebacks, by default.
Just install the package and enjoy much less useful information when hitting exceptions.

## Demo

```
❯ cat t.py
def rec():
    rec()

rec()

❯ python t.py
RecursionError: maximum recursion depth exceeded
```