Re: [IronPython] IronPython and CPython httplib and ssl modules produce IOError

2011-06-12 Thread Bill Janssen
Lukáš Duběda loo...@duber.cz wrote: Hi there, I hope someone out there could help me out with this problem. I have a API written in Python (CPython that is) that relies on some of the CPython modules, such as ssl and httplib. The problem is, when I call the API and its methods via

Re: [IronPython] IronPython and CPython httplib and ssl modules produce IOError

2011-06-12 Thread Lukáš Duběda
Hi there, Bill, thanks a lot for the insight of the issue, I can see how my programs could error out like that now. I'll see what I can do for now, but, unfortunately the fastest and easiest workaround I used was: try: main() except IOError: main() which is painful even when looked

Re: [IronPython] IronPython and CPython httplib and ssl modules produce IOError

2011-06-10 Thread Zachary Gramana
Lukas, I'm working on this issue, or at least an issue that generates the same exception. I do have a working patch, which I hope to contribute back after a little more work on it. Check your API to see if you are making any calls to socket.makefile(). If you do, and subsequently close

Re: [IronPython] IronPython and CPython httplib and ssl modules produce IOError

2011-06-10 Thread Lukáš Duběda
Thank you, Zack, unfortunately, editing the API I got isn't an option, so the only workaround I found was to catch the exception and completely ignore it, which is terrible, but at least it works. So you're saying that this is actually a bug in IronPython that's being worked at? Thanks again,

Re: [IronPython] IronPython and CPython httplib and ssl modules produce IOError

2011-06-10 Thread Zachary Gramana
I can't say for certain that issue you are experiencing is caused by the bug I'm working on, but it looks very likely. I'll let you know when I submit the patch back to the project. On 6/10/2011 1:49 PM, Lukáš Duběda wrote: Thank you, Zack, unfortunately, editing the API I got isn't an

Re: [IronPython] IronPython and CPython httplib and ssl modules produce IOError

2011-06-10 Thread Lukáš Duběda
Great! That'll save me and my clients a lot of headaches, actually. :) Thank you, Lukáš Duběda Director [T] +420 602 444 164 duber studio(tm) [M] i...@duber.cz [W] http://www.duber.cz [A] R.A.Dvorského 601, Praha 10 [A] 10900, Czech Republic, Europe On 10.6.2011 19:58, Zachary Gramana wrote: