summaryrefslogtreecommitdiff
path: root/Lib/importlib/resources.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/importlib/resources.py')
-rw-r--r--Lib/importlib/resources.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/Lib/importlib/resources.py b/Lib/importlib/resources.py
deleted file mode 100644
index 5b3bc0228d..0000000000
--- a/Lib/importlib/resources.py
+++ /dev/null
@@ -1,36 +0,0 @@
-"""Read resources contained within a package."""
-
-from ._common import (
- as_file,
- files,
- Package,
-)
-
-from ._legacy import (
- contents,
- open_binary,
- read_binary,
- open_text,
- read_text,
- is_resource,
- path,
- Resource,
-)
-
-from importlib.abc import ResourceReader
-
-
-__all__ = [
- 'Package',
- 'Resource',
- 'ResourceReader',
- 'as_file',
- 'contents',
- 'files',
- 'is_resource',
- 'open_binary',
- 'open_text',
- 'path',
- 'read_binary',
- 'read_text',
-]