Add a bunch of missing python docstrings.

This appeases pylint, so un-disable its docstring warning.
This commit is contained in:
Avery Pennarun 2018-12-14 08:38:53 +00:00
commit 29f939013e
23 changed files with 89 additions and 4 deletions

View file

@ -1,3 +1,4 @@
"""Code for manipulating file paths."""
import os
from . import env
from .logs import debug2
@ -14,6 +15,7 @@ def _default_do_files(filename):
def possible_do_files(t):
"""Yield a list of tuples describing the .do file needed to build t."""
dirname, filename = os.path.split(t)
yield (os.path.join(env.v.BASE, dirname), "%s.do" % filename,
'', filename, '')