Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 819a69b commit df27a3bCopy full SHA for df27a3b
2 files changed
README.rst
@@ -102,6 +102,11 @@ call ``resolver.get_fully_qualified_name('collections.Set')`` to retrieve the
102
Changelog
103
---------
104
105
+Version 2.10.0 (April 17, 2026)
106
+
107
+- Update bundled typeshed
108
+- Make tests pass with the typeshed in the PyPI tarball
109
110
Version 2.9.0 (March 1, 2026)
111
112
- Update bundled typeshed
typeshed_client/finder.py
@@ -381,7 +381,9 @@ def _find_file_in_dir(
381
382
383
def find_typeshed() -> Path:
384
- return importlib_resources.files("typeshed_client") / "typeshed"
+ path = importlib_resources.files("typeshed_client") / "typeshed"
385
+ assert isinstance(path, Path), repr(path)
386
+ return path
387
388
389
def parse_stub_file(path: Path) -> ast.Module:
0 commit comments