003 File Manager
Current Path:
/usr/local/lib/python3.8/test/test_importlib
usr
/
local
/
lib
/
python3.8
/
test
/
test_importlib
/
📁
..
📄
__init__.py
(142 B)
📄
__main__.py
(58 B)
📁
__pycache__
📄
abc.py
(2.22 KB)
📁
builtin
📁
data
📁
data01
📁
data02
📁
data03
📁
extension
📄
fixtures.py
(4.99 KB)
📁
frozen
📁
import_
📁
namespace_pkgs
📁
source
📄
stubs.py
(233 B)
📄
test_abc.py
(33.07 KB)
📄
test_api.py
(18.36 KB)
📄
test_lazy.py
(4.81 KB)
📄
test_locks.py
(4.55 KB)
📄
test_main.py
(7.66 KB)
📄
test_metadata_api.py
(5.01 KB)
📄
test_namespace_pkgs.py
(10.57 KB)
📄
test_open.py
(2.2 KB)
📄
test_path.py
(1.53 KB)
📄
test_read.py
(1.99 KB)
📄
test_resource.py
(8.36 KB)
📄
test_spec.py
(30.38 KB)
📄
test_util.py
(34.67 KB)
📄
test_windows.py
(5.83 KB)
📄
test_zip.py
(2.41 KB)
📄
util.py
(18.04 KB)
📁
zipdata01
📁
zipdata02
Editing: abc.py
import abc class FinderTests(metaclass=abc.ABCMeta): """Basic tests for a finder to pass.""" @abc.abstractmethod def test_module(self): # Test importing a top-level module. pass @abc.abstractmethod def test_package(self): # Test importing a package. pass @abc.abstractmethod def test_module_in_package(self): # Test importing a module contained within a package. # A value for 'path' should be used if for a meta_path finder. pass @abc.abstractmethod def test_package_in_package(self): # Test importing a subpackage. # A value for 'path' should be used if for a meta_path finder. pass @abc.abstractmethod def test_package_over_module(self): # Test that packages are chosen over modules. pass @abc.abstractmethod def test_failure(self): # Test trying to find a module that cannot be handled. pass class LoaderTests(metaclass=abc.ABCMeta): @abc.abstractmethod def test_module(self): """A module should load without issue. After the loader returns the module should be in sys.modules. Attributes to verify: * __file__ * __loader__ * __name__ * No __path__ """ pass @abc.abstractmethod def test_package(self): """Loading a package should work. After the loader returns the module should be in sys.modules. Attributes to verify: * __name__ * __file__ * __package__ * __path__ * __loader__ """ pass @abc.abstractmethod def test_lacking_parent(self): """A loader should not be dependent on it's parent package being imported.""" pass @abc.abstractmethod def test_state_after_failure(self): """If a module is already in sys.modules and a reload fails (e.g. a SyntaxError), the module should be in the state it was before the reload began.""" pass @abc.abstractmethod def test_unloadable(self): """Test ImportError is raised when the loader is asked to load a module it can't.""" pass
Upload File
Create Folder