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>2011-02-28 08:59:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-28 08:59:44 +0300
commit5ef65a0a3bdf61b7b384cbff77832604ab8fad48 (patch)
treecad8875b96c7f912b167fe37a1bba31a067bbd83 /release/scripts/modules/bpy
parente09189cf50682016e69fb207b010447c3bc6471d (diff)
build system now exclude config-*, turtledemo when copying system python.
also remove __pycache__ dirs when cleaning (new in python 3.2)
Diffstat (limited to 'release/scripts/modules/bpy')
-rw-r--r--release/scripts/modules/bpy/utils.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/release/scripts/modules/bpy/utils.py b/release/scripts/modules/bpy/utils.py
index e98577c3310..591a309cf81 100644
--- a/release/scripts/modules/bpy/utils.py
+++ b/release/scripts/modules/bpy/utils.py
@@ -23,10 +23,7 @@ This module contains utility functions specific to blender but
not assosiated with blenders internal data.
"""
-from _bpy import register_class
-from _bpy import unregister_class
-
-from _bpy import blend_paths
+from _bpy import register_class, unregister_class, blend_paths
from _bpy import script_paths as _bpy_script_paths
from _bpy import user_resource as _user_resource