Nick Coghlan added the comment:
One trap to watch out for: it's best to call os.path.realpath() on any
temporary directories created, since the interpreter tends to do that
internally.
I'd previously dealt with this in script_helper.temp_dir, but it came up again
when I tightened up the runp
New submission from Chris Jerdonek :
This issue is to refactor the create-package code in test_runpy into a helper
module, as suggested in issue 15358.
This is a prerequisite to moving the pkgutil.walk_package() tests from
test_runpy into test_pkgutil.
--
components: Tests
keywords: e