Return the value of a single variable using the dictionary returned by 'get_config_vars()'. Equivalent to get_config_vars().get(name)
(name)
| 707 | |
| 708 | |
| 709 | def get_config_var(name): |
| 710 | """Return the value of a single variable using the dictionary returned by |
| 711 | 'get_config_vars()'. |
| 712 | |
| 713 | Equivalent to get_config_vars().get(name) |
| 714 | """ |
| 715 | return get_config_vars().get(name) |
| 716 | |
| 717 | |
| 718 | def get_platform(): |
nothing calls this directly
no test coverage detected