Re: socket.inet_ntop, and pton question

2009-08-05 Thread Mahesh Poojary S
Martin-298 wrote: Hi Are these functions (inet_ntop(), inet_pton()) from the socket library supported on Windows. If not is there an equivalent for them using Windows Ive seen mention of people creating their own in order to use them Appreciate the help ty --

Re: socket.inet_ntop, and pton question

2007-01-30 Thread Andrew
Hi I just thought I would mention that I found what I needed from dnspython if anyone ever needs ;) http://www.dnspython.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: socket.inet_ntop, and pton question

2007-01-28 Thread Irmen de Jong
Andrew wrote: Hi Are these functions (inet_ntop(), inet_pton()) from the socket library supported on Windows. If not is there an equivalent for them using Windows Ive seen mention of people creating their own in order to use them Appreciate the help ty Why didn't you just try:

Re: socket.inet_ntop, and pton question

2007-01-28 Thread Gabriel Genellina
At Sunday 28/1/2007 15:17, Irmen de Jong wrote: Are these functions (inet_ntop(), inet_pton()) from the socket library supported on Windows. Why didn't you just try: [E:\Projects]python Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win32 Type help,

Re: socket.inet_ntop, and pton question

2007-01-28 Thread Irmen de Jong
Gabriel Genellina wrote: But these are not the requested functions, inet_ntop() and inet_pton(): py socket.inet_ntop Traceback (most recent call last): File stdin, line 1, in ? AttributeError: 'module' object has no attribute 'inet_ntop' Oops, my bad. Should have had more coffee