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-06 15:36:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-06 15:36:55 +0300
commit25bd57b0a1512037070d9e6c85694ab8fa82ec1b (patch)
treefa3aecae72fab58003dd7c624e11892a1b0de1a2 /source/blender/python/intern/bpy_app.c
parentd64f46e0bbdd390b2b5487f09638402e7bdfe0e4 (diff)
include getset's for generating module docs.
used for bpy.debug/tempdir/driver_namespace which were previously undocumented.
Diffstat (limited to 'source/blender/python/intern/bpy_app.c')
-rw-r--r--source/blender/python/intern/bpy_app.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c
index 21a97462dda..bbcfef4cd30 100644
--- a/source/blender/python/intern/bpy_app.c
+++ b/source/blender/python/intern/bpy_app.c
@@ -59,10 +59,10 @@ static PyStructSequence_Field app_info_fields[] = {
{(char *)"build_revision", (char *)"The subversion revision this blender instance was built with"},
{(char *)"build_platform", (char *)"The platform this blender instance was built for"},
{(char *)"build_type", (char *)"The type of build (Release, Debug)"},
- {(char *)"build_cflags", (char *)""},
- {(char *)"build_cxxflags", (char *)""},
- {(char *)"build_linkflags", (char *)""},
- {(char *)"build_system", (char *)""},
+ {(char *)"build_cflags", (char *)"C compiler flags"},
+ {(char *)"build_cxxflags", (char *)"C++ compiler flags"},
+ {(char *)"build_linkflags", (char *)"Binary linking flags"},
+ {(char *)"build_system", (char *)"Build system used"},
{0}
};