Mercurial > hg > decoupage
changeset 1:93ab6d1968bd
adding comments about what this file contains
author | jhammel@jhammel-laptop |
---|---|
date | Mon, 07 Sep 2009 20:41:42 -0400 |
parents | fa2005f769eb |
children | 041958c8c8f2 |
files | decoupage/formatters.py |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/decoupage/formatters.py Mon Sep 07 13:40:22 2009 -0400 +++ b/decoupage/formatters.py Mon Sep 07 20:41:42 2009 -0400 @@ -1,5 +1,7 @@ from fnmatch import fnmatch +### abstract base classes for formatters + class FormatterBase(object): """ abstract base class if you want to use __init__ methods @@ -23,6 +25,9 @@ if key not in self.kw: self.kw[key] = default + +### formatters + class Ignore(object): """ignore files of a certain pattern"""