Return the value of a single variable using the dictionary returned by 'get_config_vars()'. Equivalent to get_config_vars().get(name)
(name)
| 632 | |
| 633 | |
| 634 | def get_config_var(name): |
| 635 | """Return the value of a single variable using the dictionary returned by |
| 636 | 'get_config_vars()'. |
| 637 | |
| 638 | Equivalent to get_config_vars().get(name) |
| 639 | """ |
| 640 | return get_config_vars().get(name) |
| 641 | |
| 642 | |
| 643 | def get_platform(): |