flask_debugtoolbar_lineprofilerpanel
flask_debugtoolbar_lineprofilerpanel copied to clipboard
Line Profiler Panel for Flask Debug Toolbar
Im not expert in pythoneggs stuff but I am facing problem not satisfied requirements for flask_debugtoolbar_lineprofilerpanel: In https://github.com/rkern/line_profiler/blob/master/setup.py there is: install_requires=[ 'line-profiler>=1.0b3' while in https://github.com/rkern/line_profiler/blob/master/setup.py there is: setup( name =...
``` python def foo(): @line_profile def foo_inner(): pass ``` This won't work because the reference to foo changes (local variable I believe)