News

sensitive_variables is a decorator you can apply to your functions to prevent certain local variables from being read by debugging tools, such as the Django crash reporter or Sentry. Unlike Django's ...
In this article, I'll be exploring the basics of Python, i.e. variables, input and output. You'll need Python (2.7+), a computer, and some free time. Variables Simply put, variables are like ...
It turns out Python exceptions have a e.__traceback__ property which provides access to a traceback - and the local variables in that traceback are avialable on the tb.tb_frame.f_locals dictionary - ...