summaryrefslogtreecommitdiff
path: root/paramiko/message.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-09 23:36:47 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-09 23:38:58 -0500
commita43ad5e6c1a038dcc7cab596b15f7bba462dc95a (patch)
treeb635210bf8185289d3e570b4a9cc3e476091a9ee /paramiko/message.py
parent8bda24dcb4bc8ca0969e78b3cced9bf82c010343 (diff)
downloadparamiko-a43ad5e6c1a038dcc7cab596b15f7bba462dc95a.tar.gz
Some semi-missed removals of 'long'
- a couple spots where we wrote longs as int64 and ints as int. I _think_ the right thing to do here is write all ints as int64 given how Python handles these under 3. - docs bits
Diffstat (limited to 'paramiko/message.py')
-rw-r--r--paramiko/message.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/message.py b/paramiko/message.py
index b555e2cd..fc832732 100644
--- a/paramiko/message.py
+++ b/paramiko/message.py
@@ -31,8 +31,8 @@ from paramiko.util import u
class Message(object):
"""
An SSH2 message is a stream of bytes that encodes some combination of
- strings, integers, bools, and infinite-precision integers (known in Python
- as longs). This class builds or breaks down such a byte stream.
+ strings, integers, bools, and infinite-precision integers. This class
+ builds or breaks down such a byte stream.
Normally you don't need to deal with anything this low-level, but it's
exposed for people implementing custom extensions, or features that