# HG changeset patch # User jhammel@jhammel-laptop # Date 1252370502 14400 # Node ID 93ab6d1968bdddd1604a389417b04440350657ed # Parent fa2005f769ebbe9cb89cca0483ccc360cf2edb97 adding comments about what this file contains diff -r fa2005f769eb -r 93ab6d1968bd decoupage/formatters.py --- 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"""