]> granicus.if.org Git - python/commit
bpo-32248 - Implement importlib.resources (#4911)
authorBarry Warsaw <barry@python.org>
Sat, 30 Dec 2017 20:18:06 +0000 (15:18 -0500)
committerGitHub <noreply@github.com>
Sat, 30 Dec 2017 20:18:06 +0000 (15:18 -0500)
commitdeae6b451fefd5fd3143dd65051e1d341e5a5f84
tree21d0732eb5dd8f7d5ca469b39a1f3b703f3f83f3
parentffcb4c0165827d0a48ea973cc88bc134c74879fb
bpo-32248 - Implement importlib.resources (#4911)

Port importlib_resources to importlib.resources
28 files changed:
Doc/library/importlib.rst
Doc/whatsnew/3.7.rst
Lib/importlib/resources.py [new file with mode: 0644]
Lib/test/test_importlib/data01/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/data01/binary.file [new file with mode: 0644]
Lib/test/test_importlib/data01/subdirectory/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/data01/subdirectory/binary.file [new file with mode: 0644]
Lib/test/test_importlib/data01/utf-16.file [new file with mode: 0644]
Lib/test/test_importlib/data01/utf-8.file [new file with mode: 0644]
Lib/test/test_importlib/data02/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/data02/one/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/data02/one/resource1.txt [new file with mode: 0644]
Lib/test/test_importlib/data02/two/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/data02/two/resource2.txt [new file with mode: 0644]
Lib/test/test_importlib/data03/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/data03/namespace/portion1/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/data03/namespace/portion2/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/data03/namespace/resource1.txt [new file with mode: 0644]
Lib/test/test_importlib/test_open.py [new file with mode: 0644]
Lib/test/test_importlib/test_path.py [new file with mode: 0644]
Lib/test/test_importlib/test_read.py [new file with mode: 0644]
Lib/test/test_importlib/test_resource.py [new file with mode: 0644]
Lib/test/test_importlib/util.py
Lib/test/test_importlib/zipdata01/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/zipdata01/ziptestdata.zip [new file with mode: 0644]
Lib/test/test_importlib/zipdata02/__init__.py [new file with mode: 0644]
Lib/test/test_importlib/zipdata02/ziptestdata.zip [new file with mode: 0644]
Misc/NEWS.d/next/Library/2017-12-15-15-34-12.bpo-32248.zmO8G2.rst