New submission from Martin Panter:

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

----------
components: Tests
messages: 253509
nosy: brett.cannon, martin.panter
priority: normal
severity: normal
status: open
title: imp module DeprecationWarning in test suite
type: behavior
versions: Python 3.6

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue25487>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to