Opened 9 years ago
Closed 9 years ago
#26880 closed Cleanup/optimization (duplicate)
test_module_loading.py imports the imp-library which raises PendingDeprecationWarning
| Reported by: | Mads Jensen | Owned by: | nobody |
|---|---|---|---|
| Component: | Testing framework | Version: | 1.9 |
| Severity: | Normal | Keywords: | library deprecation |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description (last modified by )
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
Change History (1)
comment:1 by , 9 years ago
| Description: | modified (diff) |
|---|---|
| Resolution: | → duplicate |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Duplicate of #21628. I don't think the solution is as simple as you describe but if you get something working, please send a PR.