diff options
Diffstat (limited to 'gr-utils/python/modtool/tests/test_modtool.py')
-rw-r--r-- | gr-utils/python/modtool/tests/test_modtool.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/tests/test_modtool.py b/gr-utils/python/modtool/tests/test_modtool.py index 3cfd735f90..957a5e7d54 100644 --- a/gr-utils/python/modtool/tests/test_modtool.py +++ b/gr-utils/python/modtool/tests/test_modtool.py @@ -64,7 +64,11 @@ class TestModToolCore(unittest.TestCase): def setUp(self): """ create a new module and block before every test """ try: - warnings.simplefilter("ignore", ResourceWarning) + try: + warnings.simplefilter("ignore", ResourceWarning) + except (NameError): + # Python2 , Python3 < 3.2 don't know ResourceWarning + pass args = {'module_name':'howto', 'directory': self.test_dir, 'srcdir': self.srcdir} |