[issue14585] Have test_import run more importlib tests

2012-04-20 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue14585] Have test_import run more importlib tests

2012-04-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset a74ba7407457 by Brett Cannon in branch 'default': Issue #14585: test_import now runs all tests under http://hg.python.org/cpython/rev/a74ba7407457 -- nosy: +python-dev ___ Python tracker

[issue14585] Have test_import run more importlib tests

2012-04-18 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14585] Have test_import run more importlib tests

2012-04-15 Thread Brett Cannon
Brett Cannon added the comment: This also means that the importlib.test.import_.util.importlib_only decorators are probably all useless. -- ___ Python tracker ___ _

[issue14585] Have test_import run more importlib tests

2012-04-14 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue14585] Have test_import run more importlib tests

2012-04-14 Thread Brett Cannon
Changes by Brett Cannon : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue14585] Have test_import run more importlib tests

2012-04-14 Thread Brett Cannon
Changes by Brett Cannon : -- components: +Tests stage: -> needs patch versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-li

[issue14585] Have test_import run more importlib tests

2012-04-14 Thread Brett Cannon
New submission from Brett Cannon : As it stands, test_import runs importlib.test.import_.test_relative_imports. It would probably be better to have test_import run all importlib tests using __import__(), especially since it is already coded up in importlib.test.__main__ to do so. In all hones