Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REPL shows continuation prompt (...) when comment or space entered #82854

Closed
gvanrossum opened this issue Nov 3, 2019 · 15 comments
Closed

REPL shows continuation prompt (...) when comment or space entered #82854

gvanrossum opened this issue Nov 3, 2019 · 15 comments
Labels
3.7 (EOL) end of life 3.8 only security fixes 3.9 only security fixes interpreter-core (Objects, Python, Grammar, and Parser dirs)

Comments

@gvanrossum
Copy link
Member

BPO 38673
Nosy @gvanrossum, @terryjreedy, @ned-deily, @Phaqui, @miss-islington
PRs
  • bpo-38673: dont switch to ps2 if the line starts with comment or whitespace #17421
  • [3.8] bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (GH-17421) #17516
  • [3.7] bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (GH-17421) #17522
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = <Date 2019-12-09.14:54:58.946>
    created_at = <Date 2019-11-03.16:15:35.620>
    labels = ['interpreter-core', '3.7', '3.8', '3.9']
    title = 'REPL shows continuation prompt (...) when comment or space entered'
    updated_at = <Date 2019-12-09.15:12:47.494>
    user = 'https://github.com/gvanrossum'

    bugs.python.org fields:

    activity = <Date 2019-12-09.15:12:47.494>
    actor = 'gvanrossum'
    assignee = 'none'
    closed = True
    closed_date = <Date 2019-12-09.14:54:58.946>
    closer = 'gvanrossum'
    components = ['Interpreter Core']
    creation = <Date 2019-11-03.16:15:35.620>
    creator = 'gvanrossum'
    dependencies = []
    files = []
    hgrepos = []
    issue_num = 38673
    keywords = ['patch']
    message_count = 15.0
    messages = ['355903', '356205', '356214', '356271', '356319', '356346', '356348', '358051', '358052', '358053', '358054', '358055', '358071', '358107', '358110']
    nosy_count = 5.0
    nosy_names = ['gvanrossum', 'terry.reedy', 'ned.deily', 'Phaqui', 'miss-islington']
    pr_nums = ['17421', '17516', '17522']
    priority = 'low'
    resolution = 'fixed'
    stage = 'resolved'
    status = 'closed'
    superseder = None
    type = None
    url = 'https://bugs.python.org/issue38673'
    versions = ['Python 2.7', 'Python 3.7', 'Python 3.8', 'Python 3.9']

    @gvanrossum
    Copy link
    Member Author

    This has always bothered me, and it shouldn't be necessary.

    This session:

    >>> #foo
    ... 
    >>> 

    should really have been

    >> #foo
    >>

    It's confusing that the REPL prompt switches to "..." here, for no good reason. It should just treat the line as empty.

    Ditto if you enter a space (there's an invisible space after the first prompt):

    >>>  
    ... 
    >>>

    @gvanrossum gvanrossum added 3.7 (EOL) end of life 3.8 only security fixes 3.9 only security fixes interpreter-core (Objects, Python, Grammar, and Parser dirs) labels Nov 3, 2019
    @phaqui
    Copy link
    Mannequin

    phaqui mannequin commented Nov 7, 2019

    As a person without much experience, it sounded like a simple enough task, but having dug a bit, I found it quite complicated. It seems to me that the interpreter loop (in the standard REPL, that you get when you start ./python, blocks for input somewhere inside a massive function called 'parsetok' (in Parser/parsetok.c). Now, I could maybe investigate further, to have it return to the interpreter loop if it reads a comment (or empty line), but I'm afraid to mess up something.

    From my understanding, there aren't that many other choices, because parsetok() doesn't return before you finish the statement (in other words, it does not return if you type a comment line or a blank line - it instead waits for more input, as indicated by the '... ').

    Am I way off in concluding that this would be a change to the parser?

    @gvanrossum
    Copy link
    Member Author

    Yes, that's likely where the change should be made.

    I think if the *first* token encountered is either NL or COMMENT the parse should be abandoned by the tokenizer.

    @terryjreedy
    Copy link
    Member

    Entering 'pass' or a completely blank line results in a new primary prompt, at least on Windows. The Windows REPL otherwise prints ... even for effectively blank lines. IDLE usually prints a new prompt for effectively blank lines.

    >>
    >> #a
    >> # a
    >> #a
    >>

    I agree that these look better. This behavior comes from code.InteractiveInterpreter and ultimately codeop.

    def _maybe_compile(compiler, source, filename, symbol):
        # Check for source consisting of only blank lines and comments
        for line in source.split("\n"):
            line = line.strip()
            if line and line[0] != '#':
                break               # Leave it alone
        else:
            if symbol != "eval":
                source = "pass"     # Replace it with a 'pass' statement

    As noted above, 'pass\n' is treated the same as '\n'

    The first line above originally had a space, but IDLE appears to strip trailing whitespace also, even outside of comments. (For an ending '\ ', this prevents SyntaxError, but maybe this is a bad lesson for beginners.) However, I did find a case with an unnecessary continuation line.

    >>>  # a
     
    >>> 

    This puzzles me, as it should be treated exactly the same as without the space after '#'. ast.dump(ast.parse(' # a\n', '', 'single')) gives the same result, 'Module(body=[], type_ignores=[])', as without.

    @gvanrossum
    Copy link
    Member Author

    Regarding the IDLE mystery, *if* there's a difference between how it treats " # a" and "# a", this must be due to some part of the code that's invoked before _maybe_compile() is called, right?

    But that's immaterial to this bug -- I'm only complaining about the "builtin" REPL.

    @terryjreedy
    Copy link
    Member

    Fix corner case bugs in IDLE would definitely be a separate issue. But is the 'fix' in _maybe_compile at all applicable to the REPL? Or might a parser change REPL fix make the code in _maybe_compile unneeded?

    @gvanrossum
    Copy link
    Member Author

    But is the 'fix' in _maybe_compile at all applicable to the REPL? Or might a parser change REPL fix make the code in _maybe_compile unneeded?

    I don't know. Most of the contortions in code.py codeop.py are meant to emulate what the parser does without help in the REPL: keep asking for input until one of the following happens:

    • a syntax error is found;

    • a simple statement is parsed till completion;

    • an empty line is found at a point where a compound statement is potentially complete.

    The bug here is that apparently the above conditions aren't quite enough, and it seems we need to add:

    • a line that contains just whitespace and/or a comment is seen before anything else.

    The reason that IDLE has to reimplement similar logic is that the parser (actually, the tokenizer) isn't written as a coroutine to which you send lines you read -- it's written as a blocking function that you pass a file and the function will attempt to read lines from the file. The function returns a parse tree or raise an error. That model doesn't work in IDLE, which needs to stay reactive while the shell window is in the middle of a statement.

    I think we'll find that the bug is *very* old. IIRC the initial releases of Python didn't have the rule that indentation is ignored between matching parentheses/brackets/braces. In those days the tokenizer also didn't gracefully skip blank lines, or lines with comments that weren't aligned with the current indentation level. So then checking for empty lines was good enough.

    @miss-islington
    Copy link
    Contributor

    New changeset 109fc27 by Miss Islington (bot) (Batuhan Taşkaya) in branch 'master':
    bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (GH-17421)
    109fc27

    @gvanrossum
    Copy link
    Member Author

    I'd like to backport this to 3.8.1 at least. Are people interested in getting it backported to earlier versions?

    @miss-islington
    Copy link
    Contributor

    New changeset 184a381 by Miss Islington (bot) in branch '3.8':
    bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (GH-17421)
    184a381

    @gvanrossum
    Copy link
    Member Author

    So 3.8.1 got backported by Miss Islington. Do we want this in earlier releases?

    @terryjreedy
    Copy link
    Member

    I would prefer that. I think treating '\n' and ' \n' differently is a bit of a bug. And the fix pretty well matches code/codeop behavior. I have so far not imagined how it could break code. But you could let Ned Deily decide, before the next rc, if you want.

    I am neutral on 2.7.

    @ned-deily
    Copy link
    Member

    New changeset 188d5ae by Ned Deily (Miss Islington (bot)) in branch '3.7':
    bpo-38673: dont switch to ps2 if the line starts with comment or whitespace (GH-17421) (GH-17522)
    188d5ae

    @gvanrossum
    Copy link
    Member Author

    Ned agreed, it's merged into 3.7, so let's close.

    @gvanrossum
    Copy link
    Member Author

    (And I'm giving up on 3.6 and 2.7 as these are close to their end of life.)

    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    3.7 (EOL) end of life 3.8 only security fixes 3.9 only security fixes interpreter-core (Objects, Python, Grammar, and Parser dirs)
    Projects
    None yet
    Development

    No branches or pull requests

    4 participants