mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-07 05:54:02 +08:00
16ae4c6120
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
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]: ...
|