mirror of
https://github.com/python/cpython.git
synced 2025-11-01 14:11:41 +00:00
Fix a bug where code was trying to index an int. Left over from the situation
from using str.rpartition to str.rindex. Closes Issue5213.
This commit is contained in:
parent
75a4fab6a4
commit
ac10be365e
2 changed files with 7 additions and 4 deletions
|
|
@ -140,11 +140,14 @@ def test_relative_package_import(self):
|
|||
pkg_name = 'pkg'
|
||||
pkg_long_name = '{0}.__init__'.format(pkg_name)
|
||||
module_name = 'mod'
|
||||
subpkg_name = '{0}.subpkg'.format(pkg_name)
|
||||
subpkg_long_name = '{0}.__init__'.format(subpkg_name)
|
||||
absolute_name = '{0}.{1}'.format(pkg_name, module_name)
|
||||
relative_name = '.{0}'.format(module_name)
|
||||
with mock_modules(pkg_long_name, absolute_name) as mock:
|
||||
relative_name = '..{0}'.format(module_name)
|
||||
with mock_modules(pkg_long_name, subpkg_long_name,
|
||||
absolute_name) as mock:
|
||||
with import_state(meta_path=[mock]):
|
||||
module = importlib.import_module(relative_name, pkg_name)
|
||||
module = importlib.import_module(relative_name, subpkg_name)
|
||||
self.assertEqual(module.__name__, absolute_name)
|
||||
|
||||
def test_absolute_import_with_package(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue