##// END OF EJS Templates
util: remove doc of long gone 'targetsize' argument...
Martin von Zweigbergk -
r32123:5f53c267 default
parent child Browse files
Show More
@@ -1724,8 +1724,7 b' class chunkbuffer(object):'
1724 iterator over chunks of arbitrary size."""
1724 iterator over chunks of arbitrary size."""
1725
1725
1726 def __init__(self, in_iter):
1726 def __init__(self, in_iter):
1727 """in_iter is the iterator that's iterating over the input chunks.
1727 """in_iter is the iterator that's iterating over the input chunks."""
1728 targetsize is how big a buffer to try to maintain."""
1729 def splitbig(chunks):
1728 def splitbig(chunks):
1730 for chunk in chunks:
1729 for chunk in chunks:
1731 if len(chunk) > 2**20:
1730 if len(chunk) > 2**20:
General Comments 0
You need to be logged in to leave comments. Login now