From 49b5e5c30a08df65a5a709d1d934142ad658b664 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Wed, 25 Jul 2018 13:47:48 +0200 Subject: Fix UT when running in python 3.7 env Due to change [1] in python 3.7 one of ryu's unit tests was failing with this version of interpreter. It was like that because of missing __qualname__ attribute in functools.partial object. This patch fixes it by adding such attribute if it's not set already. [1] https://github.com/python/cpython/pull/4496 Signed-off-by: Slawek Kaplonski Acked-By: IWAMOTO Toshihiro Signed-off-by: FUJITA Tomonori --- ryu/tests/test_lib.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ryu/tests/test_lib.py b/ryu/tests/test_lib.py index 380297bf..344c30a2 100644 --- a/ryu/tests/test_lib.py +++ b/ryu/tests/test_lib.py @@ -267,6 +267,8 @@ def add_method(cls, method_name, method): method.__name__ = method_name if six.PY3: methodtype = types.MethodType(method, cls) + if not hasattr(method, "__qualname__"): + method.__qualname__ = "%s.%s" % (cls.__qualname__, method_name) else: methodtype = types.MethodType(method, None, cls) setattr(cls, method_name, methodtype) -- cgit v1.2.3