commit | 505be2146fcee88b71899136a808173f588f9628 | [log] [tgz] |
---|---|---|
author | R David Murray <rdmurray@bitdance.com> | Wed Sep 18 08:52:38 2013 -0400 |
committer | R David Murray <rdmurray@bitdance.com> | Wed Sep 18 08:52:38 2013 -0400 |
tree | 785f2c99baedf0c2427bbf57075b503c84cc47d9 | |
parent | 104aab956f6de4131cab800f742cc108f9f92edf [diff] |
#14984: only import pwd on POSIX.
diff --git a/Lib/netrc.py b/Lib/netrc.py index 8fe4cee..2aa48f3 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py
@@ -2,7 +2,9 @@ # Module and documentation by Eric S. Raymond, 21 Dec 1998 -import io, os, shlex, stat, pwd +import os, shlex, stat +if os.name == 'posix': + import pwd __all__ = ["netrc", "NetrcParseError"]