Added stub for user module (#1454)

This commit is contained in:
Ashwini Chaudhary
2017-07-03 03:47:37 +05:30
committed by Jelle Zijlstra
parent 61154a9ad2
commit 489696e9a1

9
stdlib/2/user.pyi Normal file
View 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