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.

Author brandtbucher
Recipients brandtbucher, brett.cannon, eric.snow, michaelanckaert, nanjekyejoannah, ncoghlan
Date 2020-12-09.18:29:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1607538570.51.0.617533846633.issue26131@roundup.psfhosted.org>
In-reply-to
Content
I'm seeing the following test failure locally on master (doesn't seem to be showing up in CI though). I'm not too familiar with this stuff, but it looks related to this change:

======================================================================
FAIL: test_all (test.test___all__.AllTest) (module='distutils.command')
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/bucher/src/cpython/Lib/test/test___all__.py", line 55, in check_all
    self.assertEqual(keys, all_set, "in module {}".format(modname))
  File "/home/bucher/src/cpython/Lib/contextlib.py", line 140, in __exit__
    next(self.gen)
  File "/home/bucher/src/cpython/Lib/test/support/warnings_helper.py", line 177, in _filterwarnings
    raise AssertionError("unhandled warning %s" % reraise[0])
AssertionError: unhandled warning {message : ImportWarning('VendorImporter.exec_module() not found; falling back to load_module()'), category : 'ImportWarning', filename : '<frozen importlib._bootstrap>', lineno : 681, line : None}

----------------------------------------------------------------------

Should we be ignoring the new warning in this test as well? I'm still not sure why I seem to be the only one seeing it.
History
Date User Action Args
2020-12-09 18:29:30brandtbuchersetrecipients: + brandtbucher, brett.cannon, ncoghlan, eric.snow, michaelanckaert, nanjekyejoannah
2020-12-09 18:29:30brandtbuchersetmessageid: <1607538570.51.0.617533846633.issue26131@roundup.psfhosted.org>
2020-12-09 18:29:30brandtbucherlinkissue26131 messages
2020-12-09 18:29:29brandtbuchercreate