|
| | __init__ (self, config, base=None) |
| |
| | configure_custom (self, config) |
| |
|
| __getitem__ (self, key) |
| |
| | inc_convert (self, value) |
| |
| | resolve (self, s) |
| |
| | ext_convert (self, value) |
| |
| | cfg_convert (self, value) |
| |
| | convert (self, value) |
| |
| | as_tuple (self, value) |
| |
|
|
| value_converters = dict(BaseConfigurator.value_converters) |
| |
|
| CONVERT_PATTERN = re.compile(r'^(?P<prefix>[a-z]+)://(?P<suffix>.*)$') |
| |
|
| WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') |
| |
|
| DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') |
| |
|
| INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') |
| |
|
| DIGIT_PATTERN = re.compile(r'^\d+$') |
| |
| dict | value_converters |
| |
|
| importer = staticmethod(__import__) |
| |
◆ __init__()
| pip._vendor.distlib.util.Configurator.__init__ |
( |
|
self, |
|
|
|
config, |
|
|
|
base = None |
|
) |
| |
◆ configure_custom()
| pip._vendor.distlib.util.Configurator.configure_custom |
( |
|
self, |
|
|
|
config |
|
) |
| |
◆ inc_convert()
| pip._vendor.distlib.util.Configurator.inc_convert |
( |
|
self, |
|
|
|
value |
|
) |
| |
Default converter for the inc:// protocol.
The documentation for this class was generated from the following file:
- docs/help/help-venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py