diff options
author | Victor Stinner <vstinner@python.org> | 2023-06-06 23:13:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 21:13:24 +0000 |
commit | 94d5f9827da4bf4b1e61c134fe29904b2b92f124 (patch) | |
tree | 831fc49c1826f0bd5b37610f190c0dbb30f13563 /Lib/configparser.py | |
parent | d1b0015ea88112258470463a74dad90ebce7ab67 (diff) | |
download | cpython-94d5f9827da4bf4b1e61c134fe29904b2b92f124.tar.gz cpython-94d5f9827da4bf4b1e61c134fe29904b2b92f124.zip |
gh-105407: Remove unused imports in the stdlib (#105411)
Diffstat (limited to 'Lib/configparser.py')
-rw-r--r-- | Lib/configparser.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/configparser.py b/Lib/configparser.py index 9640f71adc7..682d9736cdc 100644 --- a/Lib/configparser.py +++ b/Lib/configparser.py @@ -147,7 +147,6 @@ import itertools import os import re import sys -import warnings __all__ = ("NoSectionError", "DuplicateOptionError", "DuplicateSectionError", "NoOptionError", "InterpolationError", "InterpolationDepthError", |