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:
authorCampbell Barton <ideasman42@gmail.com>2018-11-15 10:42:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-15 10:46:00 +0300
commit5ec1d709e7717537b9f60e4b9ea997c56f6c5c15 (patch)
treec87a6bbe5d8ab37eeac0ea4304c5fb5ef9e8669b
parent49cd13768f4435ca4d109768e5a6a96db21404ee (diff)
WM: use Python bytecode cache to run presets
Key-maps can be very large, avoid parsing on every startup.
-rw-r--r--release/scripts/modules/bpy_extras/keyconfig_utils.py2
-rw-r--r--release/scripts/startup/bl_operators/presets.py9
2 files changed, 8 insertions, 3 deletions
diff --git a/release/scripts/modules/bpy_extras/keyconfig_utils.py b/release/scripts/modules/bpy_extras/keyconfig_utils.py
index 316884e3fe1..51f1980f519 100644
--- a/release/scripts/modules/bpy_extras/keyconfig_utils.py
+++ b/release/scripts/modules/bpy_extras/keyconfig_utils.py
@@ -514,7 +514,7 @@ def keyconfig_module_from_preset(name, preset_reference_filename=None):
preset_path = bpy.utils.preset_find(name, "keyconfig")
# module name isn't used or added to 'sys.modules'.
- mod_spec = importlib.util.spec_from_file_location("__bl_keymap__", preset_path)
+ mod_spec = importlib.util.spec_from_file_location("__main__", preset_path)
mod = importlib.util.module_from_spec(mod_spec)
mod_spec.loader.exec_module(mod)
return mod
diff --git a/release/scripts/startup/bl_operators/presets.py b/release/scripts/startup/bl_operators/presets.py
index 5ff8f6f591c..9b83ee92ab4 100644
--- a/release/scripts/startup/bl_operators/presets.py
+++ b/release/scripts/startup/bl_operators/presets.py
@@ -245,9 +245,14 @@ class ExecutePreset(Operator):
if hasattr(preset_class, "reset_cb"):
preset_class.reset_cb(context)
- # execute the preset using script.python_file_run
if ext == ".py":
- bpy.ops.script.python_file_run(filepath=filepath)
+ import importlib.util
+ mod_spec = importlib.util.spec_from_file_location("__main__", filepath)
+ try:
+ mod_spec.loader.exec_module(importlib.util.module_from_spec(mod_spec))
+ except Exception as ex:
+ self.report({'ERROR'}, "Failed to executge the preset: " + repr(ex))
+
elif ext == ".xml":
import rna_xml
rna_xml.xml_file_run(context,