MobileBlur

__init__.py at [eba4a35a21]
Login

File gluon/contrib/pyrtf/__init__.py artifact 8899891f0b part of check-in eba4a35a21


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