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-01-30 16:15:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-30 16:15:39 +0300
commitec48cbd267818f444e942aebd876897314165762 (patch)
treec2548c58f90ade1ce0be637cd9bb828f2107bbc9 /release/scripts/modules
parent7a76bc9a361e6cb45e4292c0ac5c7bb08936b829 (diff)
utility functions is_negative_m3 & is_negative_m4, added python Mathutils access Matrix.is_negative
renamed Mathutils attribute wrapped -> is_wrapped
Diffstat (limited to 'release/scripts/modules')
-rw-r--r--release/scripts/modules/bpy/app.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/modules/bpy/app.py b/release/scripts/modules/bpy/app.py
index 7b4b5e03ab7..26011ca5c2e 100644
--- a/release/scripts/modules/bpy/app.py
+++ b/release/scripts/modules/bpy/app.py
@@ -45,9 +45,8 @@ This module contains application values that remain unchanged during runtime.
"""
# constants
import _bpy
-import sys as _sys
version = _bpy._VERSION
version_string = _bpy._VERSION_STR
home = _bpy._HOME
binary_path = _bpy._BINPATH
-debug = ("-d" in _sys.argv)
+debug = _bpy._DEBUG