I have a flask app that I'm trying to profile (I'm new to this). When I ran it, I had this result:
3327 function calls (3247 primitive calls) in 7.350 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
7/1 0.000 0.000 7.350 7.350 {built-in method builtins.exec}
1 0.000 0.000 7.350 7.350 <string>:1(<module>)
1 0.000 0.000 7.350 7.350 vo_app_v2.py:1094(run_app)
1 0.000 0.000 7.350 7.350 app.py:1064(run)
1 0.000 0.000 7.349 7.349 serving.py:936(run_simple)
1 0.000 0.000 7.348 7.348 serving.py:739(serve_forever)
1 0.000 0.000 7.348 7.348 socketserver.py:215(serve_forever)
15 0.000 0.000 7.347 0.490 selectors.py:403(select)
15 7.347 0.490 7.347 0.490 {method 'poll' of 'select.poll' objects}
What does the last line mean? How do I trace it to the line in my code?