mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
12 lines
222 B
Python
12 lines
222 B
Python
import sys
|
|
|
|
def find_library(name: str) -> str | None: ...
|
|
|
|
if sys.platform == "win32":
|
|
def find_msvcrt() -> str | None: ...
|
|
|
|
if sys.version_info >= (3, 14):
|
|
def dllist() -> list[str]: ...
|
|
|
|
def test() -> None: ...
|