From 1e1cfa3a1c126f5cfaa3527f8edf588ad8690b04 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 3 May 1999 18:10:37 +0000 Subject: [PATCH] No need to import sys or string. (Andrew Dalke & kjpylint) --- Lib/netrc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/netrc.py b/Lib/netrc.py index e81f0e7178b..9f47babdef9 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):