Change Pickler._batch_appends() and Pickler._batch_setitems() to take

an iterable object, instead of an iterator.
This commit is contained in:
Alexandre Vassalotti 2008-05-14 21:57:18 +00:00
parent 46c6f94c44
commit c7db1d6888
1 changed files with 4 additions and 2 deletions

View File

@ -594,7 +594,7 @@ class Pickler:
write(MARK + LIST)
self.memoize(obj)
self._batch_appends(iter(obj))
self._batch_appends(obj)
dispatch[list] = save_list
@ -611,6 +611,7 @@ class Pickler:
write(APPEND)
return
items = iter(items)
r = range(self._BATCHSIZE)
while items is not None:
tmp = []
@ -641,7 +642,7 @@ class Pickler:
write(MARK + DICT)
self.memoize(obj)
self._batch_setitems(iter(obj.items()))
self._batch_setitems(obj.items())
dispatch[dict] = save_dict
if PyStringMap is not None:
@ -659,6 +660,7 @@ class Pickler:
write(SETITEM)
return
items = iter(items)
r = range(self._BATCHSIZE)
while items is not None:
tmp = []