diff options
| author | R David Murray <rdmurray@bitdance.com> | 2013-12-13 22:21:42 (GMT) |
|---|---|---|
| committer | R David Murray <rdmurray@bitdance.com> | 2013-12-13 22:21:42 (GMT) |
| commit | b05d69808e79f95de85df8ea9683af2e97813655 (patch) | |
| tree | 83257452a2ff0db4f4e137322f550801a3c2a3be /Lib/webbrowser.py | |
| parent | c091a5762e12239330e3eda4a657c0b64fd40e6f (diff) | |
| download | cpython-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.py | 3 |
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"] |
