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 view should expand cell #23501

Closed
aeschli opened this issue May 28, 2024 · 2 comments
Closed

REPL view should expand cell #23501

aeschli opened this issue May 28, 2024 · 2 comments
Assignees
Labels
triage-needed Needs assignment to the proper sub-team

Comments

@aeschli
Copy link

aeschli commented May 28, 2024

Testing #23484

Python v2024.7.11491011 (pre-release)

  • Have settings:
{
    "interactiveWindow.executeWithShiftEnter": false,
    "python.REPL.sendToNativeREPL": true
}
  • Have file z_lib .py
import zlib

string = b'witch which has which witches wrist watch'
assert len(string) == 41

zlib_compressed_string = zlib.compress(string)
assert len(zlib_compressed_string) == 37

zlib_decompressed_string = zlib.decompress(zlib_compressed_string)
assert zlib_decompressed_string == b'witch which has which witches wrist watch'

zlib.crc32(string)
  • Select multiole lines from import zlib to zlib.crc32(string) and press Shift + Enter. `
  • The REPL view opens but only shows the first line
    image

It took me a while to understand that I have to click on ... in the cell to see all cells

Shouldn't the result of the computation be shown?
I only get it when I select zlib.crc32(string)

image

@github-actions github-actions bot added the triage-needed Needs assignment to the proper sub-team label May 28, 2024
@bhavyaus
Copy link

bhavyaus commented May 28, 2024

The cell appears minimized even when I run a single line. This seems unnecessary and should be expanded by default for single line execution.

Image

@anthonykim1
Copy link

Duplicate as: microsoft/vscode-jupyter#15799
Seems to be same with interactive window editor. Tracking inside vscode-jupyter repository.

@anthonykim1 anthonykim1 closed this as not planned Won't fix, can't repro, duplicate, stale Jun 25, 2024
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jul 26, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
triage-needed Needs assignment to the proper sub-team
Projects
None yet
Development

No branches or pull requests

3 participants