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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-05-28 13:34:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-28 13:34:45 +0400
commita9dd90be788f5ce894fd5a8c9bc8245980ec143e (patch)
treeb4e5ae9fe4fcb456de63018ce5250d6b90bbcb0c /doc
parent245d36b70693f84ee2a057f950db9c4a2e6c1145 (diff)
move load_image into image_utils and add some docstrings to bpy_extras module.
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 9575955e13a..e96b4d363b4 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -65,8 +65,9 @@ else:
"bpy.props",
"bpy.utils",
"bpy.context",
- # "bpy.types", # supports filtering
+ "bpy.types", # supports filtering
"bpy.ops", # supports filtering
+ #"bpy_extras",
"bge",
"aud",
"bgl",
@@ -363,10 +364,8 @@ def pymodule2sphinx(BASEPATH, module_name, module, title):
for submod_name in module_all:
ns = {}
exec_str = "from %s import %s as submod" % (module.__name__, submod_name)
- print(exec_str)
exec(exec_str, ns, ns)
submod = ns["submod"]
- print(submod)
if type(submod) == types.ModuleType:
submod_ls.append((submod_name, submod))