mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-28 06:36:54 +08:00
Re-organize directory structure (#4971)
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
This commit is contained in:
9
stdlib/nis.pyi
Normal file
9
stdlib/nis.pyi
Normal file
@@ -0,0 +1,9 @@
|
||||
import sys
|
||||
from typing import Dict, List
|
||||
|
||||
if sys.platform != "win32":
|
||||
def cat(map: str, domain: str = ...) -> Dict[str, str]: ...
|
||||
def get_default_domain() -> 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