From d15a23488fa8a9d912de2bc41b22a93f4d025185 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 13 Aug 2013 10:07:55 +0900 Subject: [PATCH] packet_base: update docstring Signed-off-by: YAMAMOTO Takashi Signed-off-by: FUJITA Tomonori --- ryu/lib/packet/packet_base.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/ryu/lib/packet/packet_base.py b/ryu/lib/packet/packet_base.py index 0731fd95..cbc213fd 100644 --- a/ryu/lib/packet/packet_base.py +++ b/ryu/lib/packet/packet_base.py @@ -56,21 +56,16 @@ class PacketBase(stringify.StringifyMixin): This method is used only when decoding a packet. Decode a protocol header at offset 0 in bytearray *buf*. - Returns the following two objects. + Returns the following three objects. * An object to describe the decoded header. - It should have the following attributes at least. - - =========== ============ - Attribute Description - =========== ============ - length The number of the corresponding on-wire octets. - =========== ============ * A packet_base.PacketBase subclass appropriate for the rest of the packet. None when the rest of the packet should be considered as raw payload. + * The rest of packet. + """ pass