cleanup/pep8

This commit is contained in:
David Halter
2012-12-12 21:34:04 +01:00
parent 9b45ddcb7c
commit 7969e19a5b
4 changed files with 1 additions and 25 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ def follow_param(param):
def search_param_in_docstr(docstr, param_str):
lines = docstr.split('\n')
# look at #40 to see definitions of those params
# look at #40 to see definitions of those params
sphinx_comp = ':type %s:' % param_str
googley_comp = re.compile('\s*%s\s+\(([^()]+)\)' % re.escape(param_str))
for l in lines: