We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c03c2b9 commit 22deee3Copy full SHA for 22deee3
tests/stubtest_stdlib.py
@@ -33,10 +33,6 @@ def run_stubtest(typeshed_dir: Path) -> int:
33
str(typeshed_dir),
34
*allowlist_stubtest_arguments("stdlib"),
35
]
36
- if sys.version_info < (3, 10):
37
- # As discussed in https://github.com/python/typeshed/issues/3693, we only aim for
38
- # positional-only arg accuracy for python 3.10 and above.
39
- cmd += ["--ignore-positional-only"]
40
print(" ".join(cmd), file=sys.stderr)
41
try:
42
subprocess.run(cmd, check=True)
0 commit comments