File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/backports/configparser Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 138
138
between keys and values are surrounded by spaces.
139
139
"""
140
140
141
+ from collections .abc import MutableMapping
142
+ from collections import ChainMap as _ChainMap
141
143
import functools
144
+ from .compat import io
142
145
import itertools
143
146
import os
144
147
import re
145
148
import sys
146
149
import warnings
147
- from collections import OrderedDict as _default_dict
148
- from collections import ChainMap as _ChainMap
149
- from collections .abc import MutableMapping
150
150
151
- from .compat import io
152
151
153
152
__all__ = [
154
153
"NoSectionError" ,
174
173
"MAX_INTERPOLATION_DEPTH" ,
175
174
]
176
175
176
+ from collections import OrderedDict as _default_dict
177
177
DEFAULTSECT = "DEFAULT"
178
178
179
179
MAX_INTERPOLATION_DEPTH = 10
You can’t perform that action at this time.
0 commit comments