Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/revlog.py @ 51893:eb9dea148233
revlog: cleanup some outdated docstrings
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Wed, 19 Jun 2024 17:06:05 +0200 |
parents | 0338fb200a30 |
children | 384016e91947 |
comparison
equal
deleted
inserted
replaced
51892:5baa52ca4932 | 51893:eb9dea148233 |
---|---|
933 | 933 |
934 def _chunks(self, revs, targetsize=None): | 934 def _chunks(self, revs, targetsize=None): |
935 """Obtain decompressed chunks for the specified revisions. | 935 """Obtain decompressed chunks for the specified revisions. |
936 | 936 |
937 Accepts an iterable of numeric revisions that are assumed to be in | 937 Accepts an iterable of numeric revisions that are assumed to be in |
938 ascending order. Also accepts an optional already-open file handle | 938 ascending order. |
939 to be used for reading. If used, the seek position of the file will | |
940 not be preserved. | |
941 | 939 |
942 This function is similar to calling ``self._chunk()`` multiple times, | 940 This function is similar to calling ``self._chunk()`` multiple times, |
943 but is faster. | 941 but is faster. |
944 | 942 |
945 Returns a list with decompressed data for each requested revision. | 943 Returns a list with decompressed data for each requested revision. |