Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2012-07-03 13:01:43 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-07-03 13:01:43 +0400
commit2dc06f6d50d14a97ff0c37f88b6979d18a0fd279 (patch)
tree60728ddc2bb420bcf11901e27a11a677276cb889 /modules
parent842985a49773634076d45f845957216006fc683e (diff)
Style edit (mostly), use """ for docstrings (not ''').
Diffstat (limited to 'modules')
-rw-r--r--modules/constants_utils.py4
-rw-r--r--modules/cursor_utils.py4
-rw-r--r--modules/geometry_utils.py4
-rw-r--r--modules/misc_utils.py4
-rw-r--r--modules/selection_utils.py4
-rw-r--r--modules/ui_utils.py4
6 files changed, 12 insertions, 12 deletions
diff --git a/modules/constants_utils.py b/modules/constants_utils.py
index 6840ae09..153553e7 100644
--- a/modules/constants_utils.py
+++ b/modules/constants_utils.py
@@ -17,14 +17,14 @@
#
# ##### END GPL LICENSE BLOCK #####
-'''
+"""
constants_utils.py
Useful constants...
-'''
+"""
diff --git a/modules/cursor_utils.py b/modules/cursor_utils.py
index 22aba71b..b2f4ca03 100644
--- a/modules/cursor_utils.py
+++ b/modules/cursor_utils.py
@@ -17,14 +17,14 @@
#
# ##### END GPL LICENSE BLOCK #####
-'''
+"""
cursor_utils.py
Helper methods for accessing the 3D cursor
-'''
+"""
import bpy
diff --git a/modules/geometry_utils.py b/modules/geometry_utils.py
index 2a574b5d..163d2b73 100644
--- a/modules/geometry_utils.py
+++ b/modules/geometry_utils.py
@@ -17,14 +17,14 @@
#
# ##### END GPL LICENSE BLOCK #####
-'''
+"""
geometry_utils.py
3d geometry calculations
-'''
+"""
from mathutils import Vector, Matrix
diff --git a/modules/misc_utils.py b/modules/misc_utils.py
index 4592c03b..0eb60425 100644
--- a/modules/misc_utils.py
+++ b/modules/misc_utils.py
@@ -17,12 +17,12 @@
#
# ##### END GPL LICENSE BLOCK #####
-'''
+"""
misc_util.py
Miscellaneous helper methods.
-'''
+"""
import bpy
from cursor_utils import *
diff --git a/modules/selection_utils.py b/modules/selection_utils.py
index 6c0b8827..aff9eea8 100644
--- a/modules/selection_utils.py
+++ b/modules/selection_utils.py
@@ -27,8 +27,8 @@ selected = []
class SelectionOrder(bpy.types.Operator):
- '''Store the object names in the order they are selected.
- Use RETURN key to confirm selection, ESCAPE key to cancel'''
+ """Store the object names in the order they are selected, """ \
+ """use RETURN key to confirm selection, ESCAPE key to cancel"""
bl_idname = "object.select_order"
bl_label = "Select with Order"
bl_options = {'UNDO'}
diff --git a/modules/ui_utils.py b/modules/ui_utils.py
index e938efa9..0fd7582a 100644
--- a/modules/ui_utils.py
+++ b/modules/ui_utils.py
@@ -17,14 +17,14 @@
#
# ##### END GPL LICENSE BLOCK #####
-'''
+"""
ui_utils.py
Some UI utility functions
-'''
+"""