Re: [IronPython] socket for IronPython update

2006-05-02 Thread M. David Peterson
Hi Seo,   Let me first thank you for all of your work...  It's helped me a TON as I attempt to both learn the Python language as well as attempt to utilize IronPython in a couple of projects that I am working on that have been or are in process of being developed in C#, to then utilize Python > Iro

Re: [IronPython] socket for IronPython update

2006-05-02 Thread Sanghyeon Seo
2006/5/3, Sylvain Hellegouarch <[EMAIL PROTECTED]>: > > I've copied Sylvain Hellegouarch, one of the CP project developers as > > I know he has had this on his list of things to get working. > Indeed. I've tried a few things already but I always ran into issues. Just out of curiousity, are you usi

Re: [IronPython] socket for IronPython update

2006-05-02 Thread M. David Peterson
Cool :)  Sylvain, as mentioned in IM, my lack of experience with Python keeps me from getting too involved with bug reporting on this list as I'm never quite sure if its my lack of experience with Python, or an actual bug.  I'd rather not learn how to program in Python by making a fool of myself fi

Re: [IronPython] socket for IronPython update

2006-05-02 Thread Sylvain Hellegouarch
Hi all, > > > I've copied Sylvain Hellegouarch, one of the CP project developers as > I know he has had this on his list of things to get working. Indeed. I've tried a few things already but I always ran into issues. > > There's a lot of folks, including myself, that would LOVE to see CP > runnin

Re: [IronPython] socket for IronPython update

2006-05-02 Thread M. David Peterson
Do you have CherryPy running via IronPython? I've copied Sylvain Hellegouarch, one of the CP project developers as I know he has had this on his list of things to get working. There's a lot of folks, including myself, that would LOVE to see CP running via IronPython... Sylvain, it seems that ma

[IronPython] os.stat doesn't return time values in seconds

2006-05-02 Thread Sanghyeon Seo
# test.py import os, time name = "newfile" f = open(name, "w") f.close() t = time.time() mt = os.stat(name).st_mtime print t, mt Expected result: t and mt doesn't differ by more than 1. Attached patch fixes the problem. Seo Sanghyeon --- IronPython/Modules/nt.cs.orig 2006-04-18 14:23:18.0

Re: [IronPython] socket for IronPython update

2006-05-02 Thread Sanghyeon Seo
2006/5/2, Anders Olme <[EMAIL PROTECTED]>: > I found this edna on sourceforge don't know > if it is the right edna though.. Yeah, already found it and experimented with it. It actually runs with my socket module and a tiny patch. See my "time since the epoch" post fo

[IronPython] Time since the epoch

2006-05-02 Thread Sanghyeon Seo
Hello, Python library reference 6.11 says, "The epoch is the point where the time starts. On January 1st of that year, at 0 hours, the "time since the epoch'' is zero. For Unix, the epoch is 1970." To me this seems to suggest that the epoch may vary among platforms and implementations as long as

Re: [IronPython] socket for IronPython update

2006-05-02 Thread Anders Olme
Hello,   I found this edna on sourceforge don't know if it is the right edna though..   BRG Anders Olme ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] socket for IronPython update

2006-05-02 Thread Sanghyeon Seo
2006/5/2, Chu Kevin <[EMAIL PROTECTED]>: > I always wish that IronPython can run Zope/Plone. > a importance module is socket, but your socket still not run sample > network application eg: edna What is edna and where can I download it? I currently test my socket.py against SimpleHTTPServer in Pyt

Re: [IronPython] socket for IronPython update

2006-05-02 Thread Chu Kevin
I always wish that IronPython can run Zope/Plone. a importance module is socket,but your socket still not run sample network application eg: edna 2006/5/1, Sanghyeon Seo <[EMAIL PROTECTED]>: > I updated socket for IronPython modules again: > http://sparcs.kaist.ac.kr/~tinuviel/fepy/lib/ > > Change