aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/utils/__init__.py
AgeCommit message (Collapse)Author
2013-10-27Fix all flake8 warnings and add flake8 to tox.Aymeric Augustin
2013-10-27Centralize access to config and default values.Aymeric Augustin
2013-10-26Eliminate almost all flake8 messages.Aymeric Augustin
2013-10-21Minor cleanup.Aymeric Augustin
2013-10-21Added configurable HIDDEN_STACKTRACE_MODULES.Simon Meers
2013-10-17Support non-ASCII queries in the SQL panel.Aymeric Augustin
Fix #28.
2013-10-17Simplify timing implementation.Aymeric Augustin
2013-10-17Update imports for renamed modules.Aymeric Augustin
2013-10-17Switch from str & unicode to bytes & text.Aymeric Augustin
2013-10-17Enable unicode_literals in all non-empty modules.Aymeric Augustin
2013-10-15Catch exceptions liberally when looking for sources.Aymeric Augustin
Fix #279.
2012-12-11Python 2.5 compatibility #261David Buxton
2012-05-13Stop getting a setting all the time.Jannis Leidel
2012-04-07Updated cache panel to handle multiple backends and look more like the SQL ↵Jannis Leidel
panel. This is based mostly on the awesome work by @diox done in 9aa062bb6c4318aa81c202003ea902249c0071d1. Closes #134.
2012-01-12pep8David Cramer
2012-01-13Fix python 2.5 compatibility (no named tuple and Traceback)Andrey Grygoryev
2011-10-12Custom implementation of inspect.stack() which safely handles errors with ↵David Cramer
findsource
2011-06-14Moved view function name extraction into debug_toolbar.utils.get_name_from_objDavid Cramer
2011-05-23handle cases when text is a NoneTypeDavid Cramer
2011-05-16Correct display of text in stacktracesDavid Cramer
2011-05-10Add support for __traceback_hide__ (tidy_stacktrace now inspects ↵David Cramer
inspect.stack() rather than traceback.extract_stack()) (fixes #160)
2011-03-31Add utilities to inject and monitor functions. Change DB tracking to use new ↵David Cramer
injection method on BaseDatabaseWrapper.cursor
2009-09-22Added sqlparse, replacing my simple string replace SQL keywords and updatingRob Hudson
management command and SQL panel.