From 489696e9a1e2704e115d459fcad6f3d56859295e Mon Sep 17 00:00:00 2001 From: Ashwini Chaudhary Date: Mon, 3 Jul 2017 03:47:37 +0530 Subject: [PATCH] Added stub for user module (#1454) --- stdlib/2/user.pyi | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 stdlib/2/user.pyi diff --git a/stdlib/2/user.pyi b/stdlib/2/user.pyi new file mode 100644 index 000000000..e6beaa919 --- /dev/null +++ b/stdlib/2/user.pyi @@ -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