commit | 1e1cfa3a1c126f5cfaa3527f8edf588ad8690b04 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon May 03 18:10:37 1999 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon May 03 18:10:37 1999 +0000 |
tree | 0aa1080b85679962226e43a22faae5dfc5e348fa | |
parent | 1cc2b9de35a2af2fdfe0bc707b51aae0e64b8160 [diff] |
No need to import sys or string. (Andrew Dalke & kjpylint)
diff --git a/Lib/netrc.py b/Lib/netrc.py index e81f0e7..9f47bab 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py
@@ -1,6 +1,6 @@ # Module and documentation by Eric S. Raymond, 21 Dec 1998 -import sys, os, string, shlex +import os, shlex class netrc: def __init__(self, file=None):