On Tue, 22 Oct 2013 12:18:20 +0900 Yuichi Ito <[email protected]> wrote:
> On Tue, 22 Oct 2013 11:42:00 +0900 > YAMAMOTO Takashi <[email protected]> wrote: > >> this fixes the recent travis-ci failures. > > yes, thank you. > I had written the same patch. > but I found some problems about padding at other places. > place wait for PATCH v2. please wait for PATCH v2. > > >> >> Signed-off-by: YAMAMOTO Takashi <[email protected]> >> --- >> ryu/lib/packet/sctp.py | 6 +++--- >> 1 file changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/ryu/lib/packet/sctp.py b/ryu/lib/packet/sctp.py >> index 243c0c6..f007b55 100644 >> --- a/ryu/lib/packet/sctp.py >> +++ b/ryu/lib/packet/sctp.py >> @@ -226,7 +226,7 @@ class chunk(stringify.StringifyMixin): >> _MIN_LEN = struct.calcsize(_PACK_STR) >> >> @classmethod >> - @abc.abstractproperty >> + @abc.abstractmethod >> def chunk_type(cls): >> pass >> >> @@ -1121,7 +1121,7 @@ class cause(stringify.StringifyMixin): >> _MIN_LEN = struct.calcsize(_PACK_STR) >> >> @classmethod >> - @abc.abstractproperty >> + @abc.abstractmethod >> def cause_code(cls): >> pass >> >> @@ -1692,7 +1692,7 @@ class param(stringify.StringifyMixin): >> _MIN_LEN = struct.calcsize(_PACK_STR) >> >> @classmethod >> - @abc.abstractproperty >> + @abc.abstractmethod >> def param_type(cls): >> pass >> >> > > > ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
