implement functions to execute arbitrary python code from strings or files and recast the python source keyword through using them.

This commit is contained in:
Axel Kohlmeyer
2017-05-11 22:39:08 -04:00
parent 27a6371f9b
commit d84f8898b7
4 changed files with 53 additions and 14 deletions

View File

@ -29,6 +29,8 @@ class PythonImpl : protected Pointers, public PythonInterface {
int find(char *);
int variable_match(char *, char *, int);
char *long_string(int);
int execute_string(char *);
int execute_file(char *);
private:
int ninput,noutput,length_longstr;