File gluon/contrib/pyrtf/__init__.py artifact b8639d16f2 part of check-in 4e2808f7d1
from PropertySets import * from Elements import * from Styles import * from Renderer import * def dumps(doc): import cStringIO s=cStringIO.StringIO() r=Renderer() r.Write(doc,s) return s.getvalue()