13 try: |
13 try: |
14 from configparser import ConfigParser as E5ConfigParser |
14 from configparser import ConfigParser as E5ConfigParser |
15 except ImportError: |
15 except ImportError: |
16 # Py2 part with the compatibility wrapper class |
16 # Py2 part with the compatibility wrapper class |
17 try: |
17 try: |
18 from collections import OrderedDict as _default_dict # __IGNORE_WARNING__ |
18 from collections import OrderedDict as _default_dict |
|
19 # __IGNORE_WARNING_N813__ |
19 except ImportError: |
20 except ImportError: |
20 # fallback for setup.py which hasn't yet built _collections |
21 # fallback for setup.py which hasn't yet built _collections |
21 _default_dict = dict |
22 _default_dict = dict |
22 |
23 |
23 import re |
24 import re |