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-08-17 18:32:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-17 18:32:14 +0400
commitb278279c95c9396432a66ef50499e45389e9ec18 (patch)
tree35a454ba66936f75b818c6d84dd655327a76b97e /release/scripts/modules/rna_info.py
parent08d55cbe985b97933a701848e2edaf0cd1a68641 (diff)
document rna functions that have the no_self flag set as classmethods
Diffstat (limited to 'release/scripts/modules/rna_info.py')
-rw-r--r--release/scripts/modules/rna_info.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/modules/rna_info.py b/release/scripts/modules/rna_info.py
index 296ec87fcb4..41ed0ce6b12 100644
--- a/release/scripts/modules/rna_info.py
+++ b/release/scripts/modules/rna_info.py
@@ -302,6 +302,7 @@ class InfoFunctionRNA:
self.identifier = rna_func.identifier
# self.name = rna_func.name # functions have no name!
self.description = rna_func.description.strip()
+ self.is_classmethod = rna_func.no_self
self.args = []
self.return_values = ()