Cleanup: pep8

This commit is contained in:
Campbell Barton
2016-02-01 00:47:10 +11:00
parent 0f3f117311
commit d924998d3e
24 changed files with 56 additions and 49 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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: