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:
Diffstat (limited to 'release/scripts/modules/bpy/app.py')
-rw-r--r--release/scripts/modules/bpy/app.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/release/scripts/modules/bpy/app.py b/release/scripts/modules/bpy/app.py
index da45ab8eb30..8fc92175d0e 100644
--- a/release/scripts/modules/bpy/app.py
+++ b/release/scripts/modules/bpy/app.py
@@ -18,6 +18,27 @@
# <pep8 compliant>
+"""
+This module contains application values that remain unchanged during runtime.
+
+.. data:: version
+
+ The Blender version as a tuple of 3 numbers. eg. (2, 50, 11)
+
+
+.. data:: version_string
+
+ The Blender version formatted as a string.
+
+.. data:: home
+
+ The blender home directory, normally matching $HOME
+
+.. data:: binary_path
+
+ The location of blenders executable, useful for utilities that spawn new instances.
+
+"""
# constants
import _bpy
version = _bpy._VERSION