Some Epydoc->Sphinx stuff that came from the merge
This commit is contained in:
parent
77f3b07f12
commit
0edffbb040
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue