Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

live-py is incompatible with Python 3.3.3 #33

Closed
ghost opened this issue Dec 10, 2013 · 3 comments
Closed

live-py is incompatible with Python 3.3.3 #33

ghost opened this issue Dec 10, 2013 · 3 comments
Labels

Comments

@ghost
Copy link

ghost commented Dec 10, 2013

Upon upgrading from 3.3.2 to Python 3.3.3 (with nothing else changing) live-py stopped functioning correctly.

It still shows the values for global variables, and always reports syntax errors, but shows nothing for local variables.

Be aware that 3.4.0 is in beta. Since live-py seems to break whenever Python or PyDev updates, it might be a good idea to test it with 3.4.0 too.

@donkirkby
Copy link
Owner

Thanks for the report. I'll try to test both versions.

@donkirkby
Copy link
Owner

I followed the instructions at askubuntu.com for installing Python 3.3, but I didn't notice the instructions were for 3.3.0, and you had problems with 3.3.3. My tests all pass on 3.3.0.
I'll try again with 3.3.3.

@donkirkby
Copy link
Owner

My tests all run fine with Python 3.3.3, so I'm going to close this issue.
If you can post some example code that fails for you, I'll try to reproduce it. Please also include the version of live-py that you're using, as well as the version of Eclipse and the operating system you're using.
Here's some example code that I used to test local variables:

import sys

def foo(x):
    y = x + 10
    return y

z = foo(7)
v = sys.version_info

Here are the results I got:

x = 7 
y = 17 
return 17 

z = 17 
v = sys.version_info(major=3, minor=3, micro=3, releaselevel='final', serial=0) 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant