summaryrefslogtreecommitdiffhomepage
path: root/paramiko/sftp_file.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/sftp_file.py')
-rw-r--r--paramiko/sftp_file.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/paramiko/sftp_file.py b/paramiko/sftp_file.py
index 94d62747..c74695e0 100644
--- a/paramiko/sftp_file.py
+++ b/paramiko/sftp_file.py
@@ -465,6 +465,8 @@ class SFTPFile(BufferedFile):
.. versionchanged:: 1.16.1
The ``file_size`` parameter was made optional for backwards
compatibility.
+ .. versionchanged:: 3.3
+ Added ``max_concurrent_requests``.
"""
if file_size is None:
file_size = self.stat().st_size
@@ -496,6 +498,8 @@ class SFTPFile(BufferedFile):
:return: a list of blocks read, in the same order as in ``chunks``
.. versionadded:: 1.5.4
+ .. versionchanged:: 3.3
+ Added ``max_concurrent_prefetch_requests``.
"""
self.sftp._log(
DEBUG, "readv({}, {!r})".format(hexlify(self.handle), chunks)