MobileBlur

__init__.py at [7ff27f901d]
Login

File gluon/contrib/pyrtf/__init__.py artifact b8639d16f2 part of check-in 7ff27f901d


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()