aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/sql/tracking.py
AgeCommit message (Collapse)Author
2013-11-29Also record SQL from callproc.Aymeric Augustin
I'm not sure anyone is using that, but it's in the DB API. Fix #293.
2013-11-29Record SQL from executemany.Aymeric Augustin
Fix #293.
2013-11-24Rename all panels consistently.Aymeric Augustin
Enforce absolute imports to avoid clashing with built-in package names. Thanks Jannis for his feedback.
2013-11-16Fix instrumentation of multiple database connections.Aymeric Augustin
Python requires a function call to create a new scope; lambdas don't create closures! Fix #457.
2013-11-16Flat is better than nested.Aymeric Augustin
2013-11-15Continue moving panel-specific code within panels.Aymeric Augustin
Structure the SQL and template panels as packages as they're growing.