mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 19:32:13 +08:00
Big diff: use lower-case list and dict (#5888)
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import sys
|
||||
from typing import Dict, List
|
||||
|
||||
if sys.platform != "win32":
|
||||
def cat(map: str, domain: str = ...) -> Dict[str, str]: ...
|
||||
def cat(map: str, domain: str = ...) -> dict[str, str]: ...
|
||||
def get_default_domain() -> str: ...
|
||||
def maps(domain: str = ...) -> List[str]: ...
|
||||
def maps(domain: str = ...) -> list[str]: ...
|
||||
def match(key: str, map: str, domain: str = ...) -> str: ...
|
||||
class error(Exception): ...
|
||||
|
||||
Reference in New Issue
Block a user