Home
last modified time | relevance | path

Searched refs:wheel_path (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/ensurepip/
D__init__.py57 wheel_path = os.path.join(path, filename)
58 packages[name] = _Package(version, None, wheel_path)
172 with open(package.wheel_path, "rb") as fp:
174 wheel_name = os.path.basename(package.wheel_path)
/external/python/setuptools/setuptools/tests/integration/
Dhelpers.py73 def get_wheel_members(wheel_path): argument
74 with ZipFile(wheel_path) as zipfile:
/external/python/setuptools/setuptools/tests/
Dtest_wheel.py600 wheel_path = os.path.join(source_dir, wheel_name)
602 zipfile.ZipFile(wheel_path, 'w').close()
605 _check_wheel_install(wheel_path, install_dir, None,
/external/python/cpython3/Lib/test/
Dtest_ensurepip.py57 self.assertEqual(packages['setuptools'].wheel_path,
60 self.assertEqual(packages['pip'].wheel_path,
/external/python/setuptools/setuptools/command/
Deasy_install.py1070 def install_wheel(self, wheel_path, tmpdir): argument
1071 wheel = Wheel(wheel_path)
1090 os.path.basename(wheel_path),