From 3f48e448900d9b2221ca35796bdc20e470885338 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Thu, 5 Jul 2012 06:23:45 +0200 Subject: [PATCH] Added a SP formatter function to output mere fragments of documents. --- wrw/sp/util.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wrw/sp/util.py b/wrw/sp/util.py index a913e74..0b31c65 100644 --- a/wrw/sp/util.py +++ b/wrw/sp/util.py @@ -140,6 +140,10 @@ class formatter(object): def output(cls, out, el, *args, **kw): cls(out=out, root=el, *args, **kw).start() + @classmethod + def fragment(cls, out, el, *args, **kw): + cls(out=out, root=el, *args, **kw).element(el) + def update(self, **ch): ret = type(self).__new__(type(self)) ret.__dict__.update(self.__dict__) -- 2.11.0