summaryrefslogtreecommitdiffstats
path: root/Lib/webbrowser.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-13 22:21:42 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-13 22:21:42 (GMT)
commitb05d69808e79f95de85df8ea9683af2e97813655 (patch)
tree83257452a2ff0db4f4e137322f550801a3c2a3be /Lib/webbrowser.py
parentc091a5762e12239330e3eda4a657c0b64fd40e6f (diff)
downloadcpython-b05d69808e79f95de85df8ea9683af2e97813655.zip
cpython-b05d69808e79f95de85df8ea9683af2e97813655.tar.gz
cpython-b05d69808e79f95de85df8ea9683af2e97813655.tar.bz2
#19975: remove unused imports from webbrowser module.
Report and patch by Claudiu Popa.
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r--Lib/webbrowser.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
index 2714bd1..9e47084 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"]