-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Variable explorer with binary data hangs spyder #3196
Comments
Yes, there is a big issue with the variable explorer currently. In your case the data is rather small so it's not a performance issue but a bug somewhere. |
Could you please upload a copy of |
Hi, |
I can reproduce this with 3.0.0b2 but not with current head. I think this may be a duplicate of #3031. |
@Diti24 , if I'm right then upgrading spyder to version 2.3.9 should fix the issue. |
@jitseniesen, thenks. About 2.3.9 well if I do conda upgrade I remain to 2.3.8... shall I do a manual installation? Shall I do a manual installation or m I missing something Following is my conda output spyder 2.3.8 py34_1 |
Sorry, even though I use anaconda I don't really understand it well, so you need somebody else. All I can see is that it works for me. Maybe if you specify the required version number by saying |
@Diti24, the problem is Spyder packages for Python 3.4 are not ready. You can update by doing
|
Thank, |
Description
After some investigation I finally found the cause (not the solution)
loading binary data in a variable in a variable makes the spyder IDE hang.
This happens only if the Variable exploer is enabled and "Esclude unsupported data types" option is not flagged.
What steps will reproduce the problem?
f=open('/tmp/20160530_185413__hmo1002.dat', 'rb')
a=f.read()
type(a)
Out[3]: bytes
len(a)
Out[4]: 2896
If the above sequence is perfomed with the Variable Explorer enabled and "Esclude unsupported data types" option is not flagged, the IDE will hang...
What is the expected output? What do you see instead?
Please provide any additional information below
the test data (which is not huge 2896 bytes) is attaced
Version and main components
Optional dependencies
The text was updated successfully, but these errors were encountered: