add 'default' keyword to python module

This commit is contained in:
Evan Martin 2011-09-06 12:59:47 -07:00
parent 873abda301
commit 3becb3bbf5

View File

@ -60,6 +60,9 @@ class Writer(object):
def subninja(self, path):
self._line('subninja %s' % path)
def default(self, paths):
self._line('default %s' % ' '.join(self._as_list(paths)))
def _line(self, text, indent=0):
"""Write 'text' word-wrapped at self.width characters."""
leading_space = ' ' * indent