Cleanup: remove unused profiling from bpy

This commit is contained in:
Campbell Barton
2015-11-16 09:39:06 +11:00
parent 603b867588
commit dbc29cb147

View File

@@ -56,22 +56,16 @@ def main():
# fake module to allow: # fake module to allow:
# from bpy.types import Panel # from bpy.types import Panel
sys.modules["bpy.app"] = app sys.modules.update({
sys.modules["bpy.app.handlers"] = app.handlers "bpy.app": app,
sys.modules["bpy.app.translations"] = app.translations "bpy.app.handlers": app.handlers,
sys.modules["bpy.types"] = types "bpy.app.translations": app.translations,
"bpy.types": types,
})
#~ if "-d" in sys.argv: # Enable this to measure start up speed # Initializes Python classes.
if 0: # (good place to run a profiler or trace).
import cProfile utils.load_scripts()
cProfile.run("import bpy; bpy.utils.load_scripts()", "blender.prof")
import pstats
p = pstats.Stats("blender.prof")
p.sort_stats("cumulative").print_stats(100)
else:
utils.load_scripts()
main() main()