mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
8 lines
163 B
Python
8 lines
163 B
Python
import sys
|
|
from typing import Optional
|
|
|
|
def find_library(name: str) -> Optional[str]: ...
|
|
|
|
if sys.platform == "win32":
|
|
def find_msvcrt() -> Optional[str]: ...
|