aboutsummaryrefslogtreecommitdiffstats
path: root/FuseArchive/ChunkBufferFile.py
blob: 22702cff96ce37fed9a162e226bb67a85400575d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import logging

# Use a file as a chunk buffer
class ChunkBufferFile:
    def __init__( self, data = '' ):
        pass

    def append( self, s ):
        pass

    def replace( self, buf, start, end ):
        pass

    def length( self ):
        pass

    def truncate( self, l ):
        pass

    def string(self):
        pass