On Wed, 18 Jun 2014 16:16:44 +0900
ISHIDA Wataru wrote:
> don't load RyuApps which is just imported and not defined in the module.
> for example, if we run the script "test.py" as shown below by
>
> $ ryu run test.py
>
> the past implementation loads and instantiates not only Test but also RyuA
On Wed, 18 Jun 2014 15:23:01 +0900
Yoshihiro Kaneko wrote:
> This patch adds python-ryu-doc package which contains the HTML
> documentation generated from doc/.
> Also updates the man pages in doc/source/man/.
>
> Signed-off-by: Yoshihiro Kaneko
> ---
> debian/changelog | 2 +-
On Wed, 18 Jun 2014 13:04:45 +0900
Yuichi Ito wrote:
> OF 1.3.4 spec (B.15.1 Changes) says:
>
> Make IPv6 flow label maskable (EXT-101).
>
> This patch makes IPv6 flow label maskable, and adds a test file for IPv6 flow
> label with masks.
>
> Signed-off-by: Yuichi Ito
> ---
> .../switch
don't load RyuApps which is just imported and not defined in the module.
for example, if we run the script "test.py" as shown below by
$ ryu run test.py
the past implementation loads and instantiates not only Test but also RyuApp
and DPSet. this patch fix this wrong behavior
test.py
===
from ry
thanks for the comment.
> how about (mod.__name__ == cls.__module__) ?
yes, this seems better.
I'll fix the patch.
Wataru ISHIDA
(2014/06/18 15:50), YAMAMOTO Takashi wrote:
>> don't load RyuApps which is just imported and not defined in the module.
>> for example, if we run the script "test.py