|
Let us walk on the 3-isogeny graph
|


Public Member Functions | |
| None | add_options (self) |
| int | run (self, Values options, List[str] args) |
| None | list_values (self, Values options, List[str] args) |
| None | get_name (self, Values options, List[str] args) |
| None | set_name_value (self, Values options, List[str] args) |
| None | unset_name (self, Values options, List[str] args) |
| None | list_config_values (self, Values options, List[str] args) |
| None | print_config_file_values (self, Kind variant) |
| None | print_env_var_values (self) |
| None | open_in_editor (self, Values options, List[str] args) |
Public Member Functions inherited from Command | |
| None | __init__ (self, str name, str summary, bool isolated=False) |
| None | handle_pip_version_check (self, Values options) |
| Tuple[Values, List[str]] | parse_args (self, List[str] args) |
| int | main (self, List[str] args) |
Public Member Functions inherited from CommandContextMixIn | |
| Generator[None, None, None] | main_context (self) |
| _T | enter_context (self, ContextManager[_T] context_provider) |
Data Fields | |
| cmd_opts | |
| list_values | |
| open_in_editor | |
| get_name | |
| set_name_value | |
| unset_name | |
| list_config_values | |
| configuration | |
Data Fields inherited from Command | |
| name | |
| summary | |
| parser | |
| cmd_opts | |
| tempdir_registry | |
| verbosity | |
Static Public Attributes | |
| bool | ignore_require_venv = True |
| str | usage |
Static Public Attributes inherited from Command | |
| str | usage = "" |
| bool | ignore_require_venv = False |
Protected Member Functions | |
| Optional[Kind] | _determine_file (self, Values options, bool need_value) |
| Any | _get_n_args (self, List[str] args, str example, int n) |
| None | _save_configuration (self) |
| str | _determine_editor (self, Values options) |
Protected Member Functions inherited from Command | |
| int | _main (self, List[str] args) |
Additional Inherited Members | |
Protected Attributes inherited from CommandContextMixIn | |
| _in_main_context | |
| _main_context | |
Manage local and global configuration. Subcommands: - list: List the active configuration (or from the file specified) - edit: Edit the configuration file in an editor - get: Get the value associated with command.option - set: Set the command.option=value - unset: Unset the value associated with command.option - debug: List the configuration files and values defined under them Configuration keys should be dot separated command and option name, with the special prefix "global" affecting any command. For example, "pip config set global.index-url https://example.org/" would configure the index url for all commands, but "pip config set download.timeout 10" would configure a 10 second timeout only for "pip download" commands. If none of --user, --global and --site are passed, a virtual environment configuration file is used if one is active and the file exists. Otherwise, all modifications happen to the user file by default.
Definition at line 22 of file configuration.py.
|
protected |
Definition at line 274 of file configuration.py.
References i.
Referenced by ConfigurationCommand.open_in_editor().

|
protected |
Definition at line 141 of file configuration.py.
References i.
|
protected |
Helper to make sure the command got the right number of arguments
Definition at line 249 of file configuration.py.
References i.
Referenced by ConfigurationCommand.get_name(), ConfigurationCommand.list_config_values(), ConfigurationCommand.list_values(), ConfigurationCommand.set_name_value(), and ConfigurationCommand.unset_name().

|
protected |
Definition at line 263 of file configuration.py.
References ConfigurationCommand.configuration, and i.
Referenced by ConfigurationCommand.set_name_value(), and ConfigurationCommand.unset_name().

| None add_options | ( | self | ) |
Reimplemented from Command.
Definition at line 58 of file configuration.py.
References Command.cmd_opts, CacheCommand.cmd_opts, CompletionCommand.cmd_opts, ConfigurationCommand.cmd_opts, DebugCommand.cmd_opts, DownloadCommand.cmd_opts, FreezeCommand.cmd_opts, HashCommand.cmd_opts, IndexCommand.cmd_opts, InspectCommand.cmd_opts, InstallCommand.cmd_opts, ListCommand.cmd_opts, SearchCommand.cmd_opts, ShowCommand.cmd_opts, UninstallCommand.cmd_opts, WheelCommand.cmd_opts, and i.
| None get_name | ( | self, | |
| Values | options, | ||
| List[str] | args | ||
| ) |
Definition at line 177 of file configuration.py.
References ConfigurationCommand._get_n_args(), and ConfigurationCommand.configuration.

| None list_config_values | ( | self, | |
| Values | options, | ||
| List[str] | args | ||
| ) |
List config key-value pairs across different config files
Definition at line 195 of file configuration.py.
References ConfigurationCommand._get_n_args(), ConfigurationCommand.configuration, i, ConfigurationCommand.print_config_file_values(), and ConfigurationCommand.print_env_var_values().

| None list_values | ( | self, | |
| Values | options, | ||
| List[str] | args | ||
| ) |
Definition at line 171 of file configuration.py.
References ConfigurationCommand._get_n_args(), and ConfigurationCommand.configuration.

| None open_in_editor | ( | self, | |
| Values | options, | ||
| List[str] | args | ||
| ) |
Definition at line 225 of file configuration.py.
References ConfigurationCommand._determine_editor(), ConfigurationCommand.configuration, and i.

| None print_config_file_values | ( | self, | |
| Kind | variant | ||
| ) |
Get key-value pairs from the file of a variant
Definition at line 211 of file configuration.py.
References ConfigurationCommand.configuration.
Referenced by ConfigurationCommand.list_config_values().

| None print_env_var_values | ( | self | ) |
Get key-values pairs present as environment variables
Definition at line 217 of file configuration.py.
References ConfigurationCommand.configuration.
Referenced by ConfigurationCommand.list_config_values().

| int run | ( | self, | |
| Values | options, | ||
| List[str] | args | ||
| ) |
Reimplemented from Command.
Definition at line 96 of file configuration.py.
| None set_name_value | ( | self, | |
| Values | options, | ||
| List[str] | args | ||
| ) |
Definition at line 183 of file configuration.py.
References ConfigurationCommand._get_n_args(), ConfigurationCommand._save_configuration(), and ConfigurationCommand.configuration.

| None unset_name | ( | self, | |
| Values | options, | ||
| List[str] | args | ||
| ) |
Definition at line 189 of file configuration.py.
References ConfigurationCommand._get_n_args(), ConfigurationCommand._save_configuration(), and ConfigurationCommand.configuration.

| cmd_opts |
Definition at line 94 of file configuration.py.
Referenced by RequirementCommand.__init__(), CacheCommand.add_options(), CompletionCommand.add_options(), ConfigurationCommand.add_options(), DownloadCommand.add_options(), FreezeCommand.add_options(), HashCommand.add_options(), InspectCommand.add_options(), InstallCommand.add_options(), ListCommand.add_options(), SearchCommand.add_options(), ShowCommand.add_options(), UninstallCommand.add_options(), and WheelCommand.add_options().
| configuration |
Definition at line 127 of file configuration.py.
Referenced by ConfigurationCommand._save_configuration(), ConfigurationCommand.get_name(), ConfigurationCommand.list_config_values(), ConfigurationCommand.list_values(), ConfigurationCommand.open_in_editor(), ConfigurationCommand.print_config_file_values(), ConfigurationCommand.print_env_var_values(), ConfigurationCommand.set_name_value(), and ConfigurationCommand.unset_name().
| get_name |
Definition at line 100 of file configuration.py.
|
static |
Definition at line 47 of file configuration.py.
| list_config_values |
Definition at line 103 of file configuration.py.
| list_values |
Definition at line 98 of file configuration.py.
| open_in_editor |
Definition at line 99 of file configuration.py.
| set_name_value |
Definition at line 101 of file configuration.py.
| unset_name |
Definition at line 102 of file configuration.py.
|
static |
Definition at line 48 of file configuration.py.