Changes between Initial Version and Version 1 of Ticket #26880
- Timestamp:
- Jul 8, 2016, 6:45:14 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26880
- Property Resolution → duplicate
- Property Status new → closed
-
Ticket #26880 – Description
initial v1 1 1 in `tests/utils_tests/test_module_loading.py` there's an import which raises a `PendingDeprecationWarning`. 2 2 {{{ 3 3 import imp 4 5 Would it be a good idea to wrap this import inside a six.PY3:6 4 }}} 5 Would it be a good idea to wrap this import inside a `six.PY3`: 6 {{{ 7 7 if six.PY3: 8 8 import import_module as imp 9 9 else: 10 10 import imp 11 }}}