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: Move all test_importlib utility code into test_importlib.util
Type: Stage: needs patch
Components: Tests Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: brett.cannon Nosy List: brett.cannon, eric.snow, python-dev
Priority: low Keywords: easy

Created on 2013-11-22 19:10 by brett.cannon, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg203840 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2013-11-22 19:10
test_importlib has a ton of utility code, typically segregated into separate util modules in each directory. But it makes importing a pain as you typically end up with the global test_importlib.util plus the directory-specific util module. Would be better to ditch the per-directory ones and just move everything up to test_importlib.util.
msg203850 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2013-11-22 19:48
+1
msg218190 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-05-09 18:33
New changeset 4e243b399307 by Brett Cannon in branch 'default':
Issue #19721: Consolidate test_importlib utility code into a single
http://hg.python.org/cpython/rev/4e243b399307
History
Date User Action Args
2022-04-11 14:57:54adminsetgithub: 63920
2014-05-09 18:33:16brett.cannonsetstatus: open -> closed
resolution: fixed
2014-05-09 18:33:04python-devsetnosy: + python-dev
messages: + msg218190
2014-02-06 18:57:47brett.cannonsetversions: + Python 3.5
2013-11-22 19:48:24eric.snowsetnosy: + eric.snow
messages: + msg203850
2013-11-22 19:10:57brett.cannoncreate