From: Ulises Ojeda Date: Sat, 4 Jun 2022 03:14:58 +0000 (+0200) Subject: netrc: Remove unused "import shlex" (#93311) X-Git-Tag: v3.12.0a1~1362 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3284f86b51e74dc7f3c5110330cde60734fa49d0;p=thirdparty%2FPython%2Fcpython.git netrc: Remove unused "import shlex" (#93311) --- diff --git a/Lib/netrc.py b/Lib/netrc.py index c1358aac6ae0..b285fd8e357d 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py @@ -2,7 +2,7 @@ # Module and documentation by Eric S. Raymond, 21 Dec 1998 -import os, shlex, stat +import os, stat __all__ = ["netrc", "NetrcParseError"]