diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-30 11:26:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 11:26:33 +0200 |
commit | 90549676e063c2c818cfc14213d3adb7edcc2bd5 (patch) | |
tree | 110a338fd217521dd310994e673e3092ec6817a8 /Lib/bz2.py | |
parent | 3209cbd99b6d65aa18b3beb124fac9c792b8993d (diff) | |
download | cpython-git-90549676e063c2c818cfc14213d3adb7edcc2bd5.tar.gz |
bpo-40443: Remove unused imports in the stdlib (GH-19803)
Diffstat (limited to 'Lib/bz2.py')
-rw-r--r-- | Lib/bz2.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/bz2.py b/Lib/bz2.py index e094fbb548..ce07ebeb14 100644 --- a/Lib/bz2.py +++ b/Lib/bz2.py @@ -12,7 +12,6 @@ __author__ = "Nadeem Vawda <nadeem.vawda@gmail.com>" from builtins import open as _builtin_open import io import os -import warnings import _compression from threading import RLock |