Skip to content

REPL view should expand cell #23501

Closed as not planned
Closed as not planned
@aeschli

Description

@aeschli

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

Metadata

Metadata

Assignees

Labels

triage-neededNeeds assignment to the proper sub-team

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions