summaryrefslogtreecommitdiff
path: root/paramiko/message.py
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2005-07-14 02:46:35 +0000
committerRobey Pointer <robey@lag.net>2005-07-14 02:46:35 +0000
commita321fa026deff83129c9a680f667eaf961d4772c (patch)
tree5389bd55273c301332ec0c570205d1901beed8bf /paramiko/message.py
parent1a7868d27f2cbf996a7069f2ccc187bcddcbb7f9 (diff)
downloadparamiko-a321fa026deff83129c9a680f667eaf961d4772c.tar.gz
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-40]
anal tweak of docs
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 22ea53d2..fd5505c7 100644
--- a/paramiko/message.py
+++ b/paramiko/message.py
@@ -100,7 +100,7 @@ class Message (object):
an int, string, etc. Just the raw bytes are returned.
@return: a string of the next C{n} bytes of the Message, or a string
- of C{n} zero bytes, if there aren't C{n} bytes remaining.
+ of C{n} zero bytes, if there aren't C{n} bytes remaining.
@rtype: string
"""
b = self.packet.read(n)
@@ -114,7 +114,7 @@ class Message (object):
is equivalent to L{get_bytes(1)<get_bytes>}.
@return: the next byte of the Message, or C{'\000'} if there aren't
- any bytes remaining.
+ any bytes remaining.
@rtype: string
"""
return self.get_bytes(1)