Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/modules/bpy/__init__.py
| Show All 29 Lines | __all__ = ( | ||||
| "path", | "path", | ||||
| "props", | "props", | ||||
| "types", | "types", | ||||
| "utils", | "utils", | ||||
| ) | ) | ||||
| # internal blender C module | # internal blender C module | ||||
| from _bpy import types, props, app, data, context | from _bpy import ( | ||||
| app, | |||||
| context, | |||||
| data, | |||||
| msgbus, | |||||
| props, | |||||
| types, | |||||
| ) | |||||
| # python modules | # python modules | ||||
| from . import utils, path | from . import utils, path | ||||
| # fake operator module | # fake operator module | ||||
| from .ops import ops_fake_module as ops | from .ops import ops_fake_module as ops | ||||
| Show All 27 Lines | |||||