Return the value of a single variable using the dictionary returned by 'get_config_vars()'. Equivalent to get_config_vars().get(name)
(name)
| 627 | |
| 628 | |
| 629 | def get_config_var(name): |
| 630 | """Return the value of a single variable using the dictionary returned by |
| 631 | 'get_config_vars()'. |
| 632 | |
| 633 | Equivalent to get_config_vars().get(name) |
| 634 | """ |
| 635 | return get_config_vars().get(name) |
| 636 | |
| 637 | |
| 638 | def get_platform(): |
searching dependent graphs…