From 2dc06f6d50d14a97ff0c37f88b6979d18a0fd279 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 3 Jul 2012 09:01:43 +0000 Subject: Style edit (mostly), use """ for docstrings (not '''). --- modules/constants_utils.py | 4 ++-- modules/cursor_utils.py | 4 ++-- modules/geometry_utils.py | 4 ++-- modules/misc_utils.py | 4 ++-- modules/selection_utils.py | 4 ++-- modules/ui_utils.py | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) (limited to 'modules') 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 -''' +""" -- cgit v1.2.3