From: R David Murray Date: Fri, 13 Dec 2013 22:21:42 +0000 (-0500) Subject: #19975: remove unused imports from webbrowser module. X-Git-Tag: v3.4.0b2~227 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b05d69808e79f95de85df8ea9683af2e97813655;p=thirdparty%2FPython%2Fcpython.git #19975: remove unused imports from webbrowser module. Report and patch by Claudiu Popa. --- diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 2714bd144e38..9e47084a91b5 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -2,14 +2,11 @@ """Interfaces for launching and remotely controlling Web browsers.""" # Maintained by Georg Brandl. -import io import os import shlex import shutil import sys -import stat import subprocess -import time __all__ = ["Error", "open", "open_new", "open_new_tab", "get", "register"]