Duroktar / Wolf

Wolf is a VsCode extension that enables live inspection of Python code in the editor.
Other
128 stars 7 forks source link

wolf does not display when output is between variable assignments #13

Closed Almenon closed 6 years ago

Almenon commented 6 years ago

The following examples correctly display output:

x = 1
x
x = 1
x
x = 

The following examples do not work:

x = 1
x
x = 5
x = 1
x
y = 'a'
x = 1
x
x = "foo"
Almenon commented 6 years ago

Almost forgot to mention - win 10, python 3.5

Duroktar commented 6 years ago

Confirmed. I'll have this fixed for 0.3.0. Thanks my friend!

Duroktar commented 6 years ago

Fixed in v0.3.0 upcoming release.

Almenon commented 6 years ago

I pulled latest but I am still not getting any output.

Duroktar commented 6 years ago

You're correct, this one regressed. Thanks for catching that!

Almenon commented 6 years ago

I feel like the QA at my work.... do devs always have this many bugs? XD

(no disrespect meant, AREPL isn't exactly bug-free either :P )

Duroktar commented 6 years ago

Yeah, it's like this with most software I think :) If everything worked right away it wouldn't be called "development" anymore! And no disrespect taken; you're helping me out a ton, I really couldn't be more thankful 🥂

Duroktar commented 6 years ago

issue13_1


issue13_2


issue13_3


That looks like it did it. I patched a few other things as well and it's all live now. Enjoy!

Also tested on Windows.