Closed as not planned
Description
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
tozlib.crc32(string)
and pressShift + Enter
. ` - The REPL view opens but only shows the first line
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)