summaryrefslogtreecommitdiff
path: root/paramiko/sftp.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/sftp.py')
-rw-r--r--paramiko/sftp.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/paramiko/sftp.py b/paramiko/sftp.py
index 2e9dff66..c557d282 100644
--- a/paramiko/sftp.py
+++ b/paramiko/sftp.py
@@ -116,6 +116,16 @@ CMD_NAMES = {
}
+# TODO: rewrite SFTP file/server modules' overly-flexible "make a request with
+# xyz components" so we don't need this very silly method of signaling whether
+# a given Python integer should be 32- or 64-bit.
+# NOTE: this only became an issue when dropping Python 2 support; prior to
+# doing so, we had to support actual-longs, which served as that signal. This
+# is simply recreating that structure in a more tightly scoped fashion.
+class int64(int):
+ pass
+
+
class SFTPError(Exception):
pass