Allow requesting Python interpreter without having to define a function just for that
This commit is contained in:
@ -60,6 +60,13 @@ bool Python::is_enabled() const {
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void Python::request()
|
||||
{
|
||||
if (!impl) init();
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void Python::command(int narg, char **arg)
|
||||
{
|
||||
if(!impl) init();
|
||||
|
||||
Reference in New Issue
Block a user