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
path: root/tests
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-01-31 16:47:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-31 16:47:10 +0300
commitd924998d3e65334c5db2257c5dc4335261adc288 (patch)
tree2b46006f90936cd859972c0dc4174a3deab21bcf /tests
parent0f3f117311d25805fa1591aa2eed3240e50c4a6f (diff)
Cleanup: pep8
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_mesh_modifiers.py4
-rw-r--r--tests/python/bl_run_operators.py6
-rw-r--r--tests/python/rst_to_doctree_mini.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/tests/python/bl_mesh_modifiers.py b/tests/python/bl_mesh_modifiers.py
index 0121be29dd6..526a54a49a2 100644
--- a/tests/python/bl_mesh_modifiers.py
+++ b/tests/python/bl_mesh_modifiers.py
@@ -816,8 +816,8 @@ def test_cube_shell(context, test):
def main():
print("Calling main!")
- #render_gl(bpy.context, "/testme")
- #ctx_clear_scene()
+ # render_gl(bpy.context, "/testme")
+ # ctx_clear_scene()
context = bpy.context
diff --git a/tests/python/bl_run_operators.py b/tests/python/bl_run_operators.py
index f3c553cf3ef..7e92b424faa 100644
--- a/tests/python/bl_run_operators.py
+++ b/tests/python/bl_run_operators.py
@@ -285,8 +285,8 @@ def run_ops(operators, setup_func=None, reset=True):
try:
op(mode)
except:
- #import traceback
- #traceback.print_exc()
+ # import traceback
+ # traceback.print_exc()
pass
if USE_ATTRSET:
@@ -445,7 +445,7 @@ def main():
filter_op_list(operators)
# for testing, mix the list up.
- #operators.reverse()
+ # operators.reverse()
if USE_RANDOM:
import random
diff --git a/tests/python/rst_to_doctree_mini.py b/tests/python/rst_to_doctree_mini.py
index dfc6cd57db6..b5e643ac46d 100644
--- a/tests/python/rst_to_doctree_mini.py
+++ b/tests/python/rst_to_doctree_mini.py
@@ -54,7 +54,7 @@ def parse_rst_py(filepath):
for i, line in enumerate(f):
line_strip = line.lstrip()
# ^\.\.\s[a-zA-Z09\-]+::.*$
- #if line.startswith(".. "):
+ # if line.startswith(".. "):
march = re_prefix.match(line_strip)
if march: