mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
* Updated the nturl2path library * Updated pathlib library + test * Updated urllib test * Added expectedFailure to failing tests * Updated importlib library
22 lines
379 B
Python
Vendored
22 lines
379 B
Python
Vendored
import sys
|
|
|
|
from . import Distribution
|
|
|
|
|
|
def inspect(path):
|
|
print("Inspecting", path)
|
|
dists = list(Distribution.discover(path=[path]))
|
|
if not dists:
|
|
return
|
|
print("Found", len(dists), "packages:", end=' ')
|
|
print(', '.join(dist.name for dist in dists))
|
|
|
|
|
|
def run():
|
|
for path in sys.path:
|
|
inspect(path)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run()
|