PATH: //proc/self/root/opt/alt/python311/lib64/python3.11/test/test_importlib
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📄 __main__.py
↓
X
📁 __pycache__/
X
📄 abc.py
↓
X
📁 builtin/
X
📁 data/
X
📁 data01/
X
📁 data02/
X
📁 data03/
X
📁 extension/
X
📄 fixtures.py
↓
X
📁 frozen/
X
📁 import_/
X
📁 namespace_pkgs/
X
📁 namespacedata01/
X
📁 partial/
X
📁 resources/
X
📁 source/
X
📄 stubs.py
↓
X
📄 test_abc.py
↓
X
📄 test_api.py
↓
X
📄 test_compatibilty_files.py
↓
X
📄 test_contents.py
↓
X
📄 test_files.py
↓
X
📄 test_lazy.py
↓
X
📄 test_locks.py
↓
X
📄 test_main.py
↓
X
📄 test_metadata_api.py
↓
X
📄 test_namespace_pkgs.py
↓
X
📄 test_open.py
↓
X
📄 test_path.py
↓
X
📄 test_pkg_import.py
↓
X
📄 test_read.py
↓
X
📄 test_reader.py
↓
X
📄 test_resource.py
↓
X
📄 test_spec.py
↓
X
📄 test_threaded_import.py
↓
X
📄 test_util.py
↓
X
📄 test_windows.py
↓
X
📄 test_zip.py
↓
X
📄 threaded_import_hangers.py
↓
X
📄 update-zips.py
↓
X
📄 util.py
↓
X
📁 zipdata01/
X
📁 zipdata02/
X
SAVING...
BERHASIL DIUBAH!
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
SIMPAN PERUBAHAN