﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
26880	test_module_loading.py imports the imp-library which raises PendingDeprecationWarning	Mads Jensen	nobody	"in `tests/utils_tests/test_module_loading.py` there's an import which raises a `PendingDeprecationWarning`.

    import imp

Would it be a good idea to wrap this import inside a six.PY3:

    if six.PY3:
        import import_module as imp
    else:
        import imp
"	Cleanup/optimization	new	Testing framework	1.9	Normal		library deprecation		Unreviewed	0	0	0	0	0	0
