def flatten(t: pages.ChildTable) -> str:
    io = BytesIO()
    writer.flattenToFile(io, t)
    return io.getvalue().decode()
Example #2
0
def flatten(t):
    io = NativeStringIO()
    writer.flattenToFile(io, t)
    return io.getvalue()
Example #3
0
def flatten(t):
    io = BytesIO()
    writer.flattenToFile(io, t)
    return io.getvalue().decode()
Example #4
0
def flatten(t):
    io = cStringIO.StringIO()
    writer.flattenToFile(io, t)
    return io.getvalue()