Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/modules/bpy/utils.py
| Show All 38 Lines | __all__ = ( | ||||
| "make_rna_paths", | "make_rna_paths", | ||||
| "manual_map", | "manual_map", | ||||
| "resource_path", | "resource_path", | ||||
| "script_path_user", | "script_path_user", | ||||
| "script_path_pref", | "script_path_pref", | ||||
| "script_paths", | "script_paths", | ||||
| "smpte_from_frame", | "smpte_from_frame", | ||||
| "smpte_from_seconds", | "smpte_from_seconds", | ||||
| "units", | |||||
| "unregister_class", | "unregister_class", | ||||
| "unregister_module", | "unregister_module", | ||||
| "user_resource", | "user_resource", | ||||
| ) | ) | ||||
| from _bpy import ( | from _bpy import ( | ||||
| escape_identifier, | escape_identifier, | ||||
| register_class, | register_class, | ||||
| unregister_class, | unregister_class, | ||||
| blend_paths, | blend_paths, | ||||
| resource_path, | resource_path, | ||||
| ) | ) | ||||
| from _bpy import script_paths as _bpy_script_paths | from _bpy import script_paths as _bpy_script_paths | ||||
| from _bpy import user_resource as _user_resource | from _bpy import user_resource as _user_resource | ||||
| from _bpy import _utils_units as units | |||||
| import bpy as _bpy | import bpy as _bpy | ||||
| import os as _os | import os as _os | ||||
| import sys as _sys | import sys as _sys | ||||
| import addon_utils as _addon_utils | import addon_utils as _addon_utils | ||||
| _user_preferences = _bpy.context.user_preferences | _user_preferences = _bpy.context.user_preferences | ||||
| ▲ Show 20 Lines • Show All 622 Lines • Show Last 20 Lines | |||||