-
Notifications
You must be signed in to change notification settings - Fork 35.1k
Closed
Description
Does this issue occur when all extensions are disabled?: Yes/No
- VS Code Version:
- OS Version:
Version: 1.79.0-insider (user setup)
Commit: 2575777
Date: 2023-05-12T05:21:06.392Z
Electron: 22.5.2
Chromium: 108.0.5359.215
Node.js: 16.17.1
V8: 10.8.168.25-electron.0
OS: Windows_NT x64 10.0.19045
Sandboxed: Yes
Steps to Reproduce:
- Install Jupyter and Python
- Ensure user setting
"notebook.output.scrolling": true, "notebook.output.textLineLimit": 30
(this is the default) - Create interactive window
- Run cell containing
import sys
for i in range(31500):
print('{!r} {!r}'.format(list(range(10)), i), file=sys.stderr)
This works, it's only abou 1 MB of output.
- Run cell containing
import sys
for i in range(31500):
print('{!r} {!r}'.format(list(range(10)), i), file=sys.stderr)
sys.stderr.flush()
The renderer crashes!