提交 c1a65cba 编写于 作者: M Max Reitz 提交者: Eduardo Habkost

iotests: 'new' module replacement in 169

iotest 169 uses the 'new' module to add methods to a class.  This module
no longer exists in Python 3.  Instead, we can use a lambda.  Best of
all, this works in 2.7 just as well.
Signed-off-by: NMax Reitz <mreitz@redhat.com>
Reviewed-by: NEduardo Habkost <ehabkost@redhat.com>
Reviewed-by: NCleber Rosa <crosa@redhat.com>
Message-Id: <20181022135307.14398-8-mreitz@redhat.com>
Signed-off-by: NEduardo Habkost <ehabkost@redhat.com>
上级 bf43b29d
...@@ -23,7 +23,6 @@ import iotests ...@@ -23,7 +23,6 @@ import iotests
import time import time
import itertools import itertools
import operator import operator
import new
import re import re
from iotests import qemu_img from iotests import qemu_img
...@@ -204,7 +203,7 @@ class TestDirtyBitmapMigration(iotests.QMPTestCase): ...@@ -204,7 +203,7 @@ class TestDirtyBitmapMigration(iotests.QMPTestCase):
def inject_test_case(klass, name, method, *args, **kwargs): def inject_test_case(klass, name, method, *args, **kwargs):
mc = operator.methodcaller(method, *args, **kwargs) mc = operator.methodcaller(method, *args, **kwargs)
setattr(klass, 'test_' + method + name, new.instancemethod(mc, None, klass)) setattr(klass, 'test_' + method + name, lambda self: mc(self))
for cmb in list(itertools.product((True, False), repeat=4)): for cmb in list(itertools.product((True, False), repeat=4)):
name = ('_' if cmb[0] else '_not_') + 'persistent_' name = ('_' if cmb[0] else '_not_') + 'persistent_'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册