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

2011-06-12 Thread Bill Janssen
Lukáš Duběda 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 IronPython >

Re: [IronPython] [Ironruby-core] Send your IronRuby usage and quotes

2011-06-12 Thread Jimmy Schementi
Dug this old thread up and added the posts to https://github.com/IronLanguages/main/wiki/IronLanguage-usages; if you have anything to add, feel free to add it to the wiki page directly. ~Jimmy ___ Users mailing list Users@lists.ironpython.com http://list

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 at.