Definition at line 319 of file root_pickle.py.
◆ __init__()
def python.root_pickle.Saver.__init__ |
( |
|
self | ) |
|
Definition at line 320 of file root_pickle.py.
321 self.__chunksize = 65536
322 self.__i = self.__chunksize
◆ add()
def python.root_pickle.Saver.add |
( |
|
self, |
|
|
|
o |
|
) |
| |
Definition at line 326 of file root_pickle.py.
327 if self.__i >= self.__chunksize:
328 self.__chunks.append ([
None] * self.__chunksize)
330 self.__chunks[-1][self.__i] = o
◆ __chunks
python.root_pickle.Saver.__chunks |
|
private |
◆ __chunksize
python.root_pickle.Saver.__chunksize |
|
private |
◆ __i
python.root_pickle.Saver.__i |
|
private |
The documentation for this class was generated from the following file: