Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/modules/bpy/__init__.py')
-rw-r--r--release/scripts/modules/bpy/__init__.py56
1 files changed, 37 insertions, 19 deletions
diff --git a/release/scripts/modules/bpy/__init__.py b/release/scripts/modules/bpy/__init__.py
index 39b8fd340ba..8e7e74e2743 100644
--- a/release/scripts/modules/bpy/__init__.py
+++ b/release/scripts/modules/bpy/__init__.py
@@ -16,6 +16,8 @@
#
# ##### END GPL LICENSE BLOCK #####
+# <pep8 compliant>
+
# internal blender C module
import _bpy
from _bpy import types, props
@@ -31,35 +33,52 @@ from bpy import ops as _ops_module
# fake operator module
ops = _ops_module.ops_fake_module
+import sys
+DEBUG = ("-d" in sys.argv)
+
+
def load_scripts(reload_scripts=False):
import os
- import sys
import traceback
+ import time
+
+
+ t_main = time.time()
def test_import(module_name):
try:
- return __import__(module_name)
+ t = time.time()
+ ret = __import__(module_name)
+ if DEBUG:
+ print("time %s %.4f" % (module_name, time.time() - t))
+ return ret
except:
traceback.print_exc()
return None
+
for base_path in utils.script_paths():
for path_subdir in ("ui", "op", "io"):
path = os.path.join(base_path, path_subdir)
- sys.path.insert(0, path)
- for f in sorted(os.listdir(path)):
- if f.endswith(".py"):
- # python module
- mod = test_import(f[0:-3])
- elif "." not in f:
- # python package
- mod = test_import(f)
- else:
- mod = None
-
- if reload_scripts and mod:
- print("Reloading:", mod)
- reload(mod)
+ if os.path.isdir(path):
+ sys.path.insert(0, path)
+ for f in sorted(os.listdir(path)):
+ if f.endswith(".py"):
+ # python module
+ mod = test_import(f[0:-3])
+ elif "." not in f:
+ # python package
+ mod = test_import(f)
+ else:
+ mod = None
+
+ if reload_scripts and mod:
+ print("Reloading:", mod)
+ reload(mod)
+
+ if DEBUG:
+ print("Time %.4f" % (time.time() - t_main))
+
def _main():
@@ -69,7 +88,8 @@ def _main():
import sys
sys.stdin = None
- if "-d" in sys.argv and False: # Enable this to measure startup speed
+ # if "-d" in sys.argv: # Enable this to measure startup speed
+ if 0:
import cProfile
cProfile.run('import bpy; bpy.load_scripts()', 'blender.prof')
@@ -81,5 +101,3 @@ def _main():
load_scripts()
_main()
-
-