mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Added stub for user module (#1454)
This commit is contained in:
committed by
Jelle Zijlstra
parent
61154a9ad2
commit
489696e9a1
9
stdlib/2/user.pyi
Normal file
9
stdlib/2/user.pyi
Normal file
@@ -0,0 +1,9 @@
|
||||
# Stubs for user (Python 2)
|
||||
|
||||
# Docs: https://docs.python.org/2/library/user.html
|
||||
# Source: https://hg.python.org/cpython/file/2.7/Lib/user.py
|
||||
from typing import Any
|
||||
|
||||
def __getattr__(name) -> Any: ... # type: ignore
|
||||
home: str
|
||||
pythonrc: str
|
||||
Reference in New Issue
Block a user