[IronPython] CodePlex dump update

2006-07-18 Thread Sanghyeon Seo
This post updates: http://lists.ironpython.com/pipermail/users-ironpython.com/2006-June/002524.html CodePlex dump, aka poor man's TFS client. :-) As I will be offline for a while starting from tomorrow, I stopped procrastinating and set up automated cronjob for my CodePlex dump. Reorganized direc

Re: [IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread Mark Rees
peter lin wrote: "It seems the method getaddrinfo() is not currently implemented. I test another module urllib, which uses httplib." I had a similar problem but thanks to our friend Seo Sanghyeon, there is a possible solution until the IronPython socket module supports getaddrinfo(). I have docu

Re: [IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread J. Merrill
One nice thing about the Python community (as distinct from some others I know of) is that Python coders are quite happy to use the code someone else wrote -- so having the Python language implementation "solid" is a big part of the battle. The IronPython team somewhat "cheated" and "just" made a

Re: [IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread peter lin
>From the article I just read, you reimplement almost all python standard libraryin dot.net 2.0, is that right? It's a unbelievably huge job. Big thank to you guys there.Best regards Peter 2006/7/19, peter lin <[EMAIL PROTECTED]>: Hello Bruce,   Thanks for the reference, I just read it.    Sorry fo

Re: [IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread peter lin
Hello Bruce,   Thanks for the reference, I just read it.    Sorry for asking the same question again.   This helps.   Thanks  a lot.    Best regards Peter     2006/7/19, Bruce Christensen <[EMAIL PROTECTED]>: Peter,   Sorry for the trouble. This is a known issue that we're tracking

Re: [IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread Bruce Christensen
Peter,   Sorry for the trouble. This is a known issue that we’re tracking in our bug database at http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=548.   For a full explanation of the situation, see http://lists.ironpython.com/pipermail/users-ironpython.com/20

Re: [IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread peter lin
It seems the method getaddrinfo() is not currently implemented.I test another module urllib, which uses  httplib. import syssys.path.append(r"c:\python24\lib")import urllibdata = "" ('http://www.google.com').read()print dataSee the error as follows. Traceback (most recent call last):  File c:\dev_t

Re: [IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread M. David Peterson
uh, minus the second "Seems to be standing in the way"... not sure how that got tagged onto the end.  Must have been between thoughts when I hit send.On 7/18/06, M. David Peterson <[EMAIL PROTECTED]> wrote: If you attempt to import encodings.idna, it seems as if the unicodedata module is the missi

Re: [IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread M. David Peterson
If you attempt to import encodings.idna, it seems as if the unicodedata module is the missing piece.  The ever resourceful Seo Sanghyeon comes to the rescue yet again > http://lists.ironpython.com/pipermail/users-ironpython.com/2006-July/002819.html AttributeError: 'module' object

[IronPython] ConceptNetUtils (CNU) version 2

2006-07-18 Thread JoeSox
This article and Visual Studio 2005 project that I recently posted online may further explain some of the questions I have been asking on this list. It demonstrates my need for speed from IronPython. I also believe it's a good example of IronPython's usefulness. Thanks! http://codeproject.com/us

[IronPython] Can not use httplib in ironpython beta9?

2006-07-18 Thread peter lin
After reading the tutorial I think it's ok to use httplib, so I write a test code to test it with ipy. I just cannot let it run ok with ipy.Is something wrong I have done? My test code as follows import syssys.path.append(r"c:\python24\lib")import httplibconn =  httplib.HTTPConnection('www.pchome.c