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>2010-12-23 00:39:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-23 00:39:48 +0300
commit54343b79e67f8baf93903fbbbaccdf32ebf04560 (patch)
tree94f7258f8880450c1e54c8d9b6fe014b228b12d3 /doc/python_api
parent2811707b927acea0223080eea59346e8e3fe2947 (diff)
remove reload() from builtins since python3 no longer uses this.
use imp.reload now. Should use import hooks but for now replace imp.reload with our own reload as the builtin reload was replaced before.
Diffstat (limited to 'doc/python_api')
-rw-r--r--doc/python_api/sphinx_doc_gen.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index ae0bb43d1bc..48dce92bee3 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -51,7 +51,6 @@ import os
import inspect
import bpy
import rna_info
-reload(rna_info)
# lame, python wont give some access
ClassMethodDescriptorType = type(dict.__dict__['fromkeys'])