From: Guido van Rossum Date: Mon, 3 May 1999 18:10:37 +0000 (+0000) Subject: No need to import sys or string. (Andrew Dalke & kjpylint) X-Git-Tag: v1.6a1~1383 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e1cfa3a1c126f5cfaa3527f8edf588ad8690b04;p=python No need to import sys or string. (Andrew Dalke & kjpylint) --- diff --git a/Lib/netrc.py b/Lib/netrc.py index e81f0e7178..9f47babdef 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):