Dies ist eine alte Version des Dokuments!


Profiler

import cProfiler
 
# ...
 
cp = cProfile.Profile()
cp.enable()
 
# Code which should be profiled
 
cp.disable()
cp.print_stats()
 
# ...
  • Zuletzt geändert: 2019-09-02 20:18