DonJayamanne / vscodeJupyter

Jupyter for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=donjayamanne.jupyter
MIT License
334 stars 34 forks source link

Can't show all results after running many display() methods of one cell #69

Open mosdeo opened 7 years ago

mosdeo commented 7 years ago

Environment data

VS Code version: 1.15.1 Jupyter Extension version: 1.1.3 OS and version: Ubuntu 16.04 LTS

Code

display("display done")
print('print done')
'last object done'

Logs

Output from Jupyter output panel

'last object done'

Output from Console window (Help->Developer Tools menu)

[Extension Host] clientExists, on server
workbench.main.js:29 [Extension Host] Objectid: "1502948479629"__proto__: Object__defineGetter__: __defineGetter__()__defineSetter__: __defineSetter__()__lookupGetter__: __lookupGetter__()__lookupSetter__: __lookupSetter__()constructor: Object()hasOwnProperty: hasOwnProperty()isPrototypeOf: isPrototypeOf()propertyIsEnumerable: propertyIsEnumerable()toLocaleString: toLocaleString()toString: toString()valueOf: valueOf()get __proto__: __proto__()set __proto__: __proto__()
6workbench.main.js:28 [Embedded Page] [object Object]

Actual behavior

Just display last print() or display() or last object.

Expected behavior

Display all print(), display() and last object of one cell.

DonJayamanne commented 6 years ago

@mosdeo What is the display function. Please could you provide the entire code you use and the exact steps (code executed in the cell) used to replicate the issue.

mosdeo commented 6 years ago

@DonJayamanne

from IPython.display import display
DonJayamanne commented 6 years ago

Sorry, but Please could you provide the entire code you have used to replicate this error.