This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: imp module DeprecationWarning in test suite
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: brett.cannon Nosy List: brett.cannon, martin.panter, python-dev
Priority: normal Keywords:

Created on 2015-10-27 00:38 by martin.panter, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg253509 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2015-10-27 00:38
I typically run the test suite with the “python -bWall” options enabled, and there is a new warning. I suspect it is a result of the DeprecationWarning upgrade in revision 5877c191b76e. When -Werror is enabled it causes test failure.

The fix is probably pretty easy; there are probably other deprecated modules tested in the test suite to copy from. I think there is a test.support function that can suppress deprecation warnings while importing a particular module.

$ make -s -j2 && LC_TIME= ./python -bWall -m test.regrtest -j0
. . .
[167/399] test_imp
/media/disk/home/proj/python/cpython/Lib/test/test_imp.py:16: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
  import imp
. . .
[207/399] test_modulefinder -- running: test_lzma (39 sec)
/media/disk/home/proj/python/cpython/Lib/modulefinder.py:14: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
  import imp
. . .
[335/399] test_threaded_import -- running: test_tarfile (36 sec), test_subprocess (62 sec)
/media/disk/home/proj/python/cpython/Lib/modulefinder.py:14: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
  import imp
msg253762 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-10-30 21:41
New changeset 3f924cb4c3eb by Brett Cannon in branch 'default':
Issue #25487: Fix tests not updated when the imp module moved to a
https://hg.python.org/cpython/rev/3f924cb4c3eb
msg253763 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2015-10-30 21:41
Thanks for the finding these, Martin!
History
Date User Action Args
2022-04-11 14:58:23adminsetgithub: 69673
2015-10-30 21:41:41brett.cannonsetstatus: open -> closed
resolution: fixed
messages: + msg253763

stage: resolved
2015-10-30 21:41:14python-devsetnosy: + python-dev
messages: + msg253762
2015-10-27 15:59:29brett.cannonsetassignee: brett.cannon
2015-10-27 00:38:47martin.pantercreate