-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG/TST: catch socket.error in py2/3.2 and ConnectionError in py3.3 #3985
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
BUG/TST: catch socket.error in py2/3.2 and ConnectionError in py3.3 #3985
Conversation
this passes travis but that doesn't really tell us that much...since the errors from #3982 are occurring intermittently... |
also it skips when i remove my connection...but i'm still not sure if that's enough |
strange that it only happens on 3.2...trying to think of what itcould be @jreback @jtratner any ideas? |
Is socket.error a subclass of IOError in 3.2? Wasn't clear on the |
yep it is. |
it's possible that this might be the problem and the solution |
sigh probably a simple context manager will fix this....the resp is not being closed...same for google |
I can write something up this week, do you want me to take it on? |
no it's fine i can do it, won't take that long. i'll write something on the wiki too showing how to use context managers with resources that don't implement the context manager protocol. while it may not be too big of a deal to not close a file (or close url resource) when one is working in the shell, it's quite another to leave resources open in library code, especially since python makes it so easy to automatically close a file. |
can you use urlopen in a with statement? If so, that makes it incredibly On Sat, Jun 22, 2013 at 11:39 PM, Phillip Cloud [email protected]:
|
Yep but in Python 2 you must use for example, with contextlib.closing(urlopen(url)) as response since url objects don't implement the context manager protocol in Python 2 in Python 3 they work fine with a regular with statement |
good to know - learned something today :) On Sun, Jun 23, 2013 at 9:29 AM, Phillip Cloud [email protected]:
|
this fix the problem? |
close in favor of #4002 . |
since you moved your data fixes to 0.13.....any chance of reviving fixing these network test issues? or too much work? |
i could just peel off the commit from the clean up and use that |
maybe do that these netwok tests failing too much |
let me get rid of some of these merge commits |
whoops that zf context won't pass hold on |
no wonder there are all these reset connection errors there are a ton of sockets to yahoo finance left open |
will merge after passing...just added docs |
BUG/TST: catch socket.error in py2/3.2 and ConnectionError in py3.3
closes #3982.