mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
9 lines
154 B
Python
9 lines
154 B
Python
import sys
|
|
|
|
def find_library(name: str) -> str | None: ...
|
|
|
|
if sys.platform == "win32":
|
|
def find_msvcrt() -> str | None: ...
|
|
|
|
def test() -> None: ...
|