Some Epydoc->Sphinx stuff that came from the merge

This commit is contained in:
Jeff Forcier 2014-03-07 11:32:02 -08:00
parent 77f3b07f12
commit 0edffbb040
1 changed files with 1 additions and 5 deletions

View File

@ -67,9 +67,6 @@ class Message (object):
def asbytes(self): def asbytes(self):
""" """
Return the byte stream content of this Message, as bytes. Return the byte stream content of this Message, as bytes.
@return: the contents of this Message.
@rtype: bytes
""" """
return self.packet.getvalue() return self.packet.getvalue()
@ -241,8 +238,7 @@ class Message (object):
""" """
Add an integer to the stream. Add an integer to the stream.
@param n: integer to add :param int n: integer to add
@type n: int
""" """
self.packet.write(struct.pack('>I', n)) self.packet.write(struct.pack('>I', n))
return self return self