This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Embedding should have public API for interactive mode
Type: Stage:
Components: Interpreter Core Versions: Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: BTaskaya, nanjekyejoannah, steveire, vstinner
Priority: normal Keywords:

Created on 2017-07-11 14:34 by steveire, last changed 2022-04-11 14:58 by admin.

Messages (2)
msg298162 - (view) Author: Stephen Kelly (steveire) Date: 2017-07-11 14:34
Consider the following three snippets:


1) 

const char* sourceCode = 
    "a = 9\n"
    "a";
// This is OK! Python runs both lines.
// BUT: The value of 'a' is not printed
PyRun_StringFlags(sourceCode, Py_file_input, localDictionary, localDictionary, 0);


2)

// This is OK! We run one statement at a time:
PyRun_StringFlags("a = 9", Py_single_input, localDictionary, localDictionary, 0);
// Python prints the value of 'a' because we use Py_single_input!
PyRun_StringFlags("a", Py_single_input, localDictionary, localDictionary, 0);


3)

const char* sourceCode = 
    "a = 9\n"
    "a";
// This is NOT OK! Python throws a SyntaxError because we used Py_single_input.
PyRun_StringFlags(sourceCode, Py_single_input, localDictionary, localDictionary, 0);




The intention is to be able to run script code in an interpreter built into an application, and to maintain two user features:

1) The behavior is the same as the standard python interpreter with regard to printing values automatically without requiring the print() statement.
2) It is allowed to copy/paste possibly multiple lines/statements and execute them

These two requirements are in conflict, because while Py_single_input enables the first, it forbids the second.

I have worked around this by using internal API in Python-ast.h and setting `mod->kind = Interactive_kind;` before calling `PyAST_CompileEx`, but that should not be needed.
msg358766 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2019-12-21 08:12
> (1) BUT: The value of 'a' is not printed

Isn't this the expected behavior for file input? You need to call print() in order to get 'a' printed.

> (2) This is OK! We run one statement at a time

As it should be for "single input". 

> (3) This is NOT OK! Python throws a SyntaxError because we used Py_single_input.

Yes, because AFAIK single stands for single statement. There are 2 (assign + expression)

> These two requirements are in conflict, because while Py_single_input enables the first, it forbids the second.

It is why there is a code module which allows implementation of REPL loops.
History
Date User Action Args
2022-04-11 14:58:48adminsetgithub: 75088
2019-12-21 08:12:40BTaskayasetnosy: + BTaskaya
messages: + msg358766
2019-06-21 14:30:56nanjekyejoannahsetnosy: + nanjekyejoannah
2019-05-15 02:34:37vstinnersetnosy: + vstinner
2017-07-11 14:34:17steveirecreate