How to learn DNS Server's IP address

2005-09-30 Thread Abdullah Yoldas
How can I learn the DNS Server's IP address for my network, programmatically? The idea is to learn DNS Server IP and initialize medusa.resolver accordingly. Thanks in advance. -- http://mail.python.org/mailman/listinfo/python-list

Re: asyncore/asynchat do not notify connection errors on Wintel?

2006-03-16 Thread Abdullah Yoldas
  return asynchat.async_chat.readable(self)     def writable(self):    return asynchat.async_chat.writable(self) Abdullah Yoldas   On 3/15/06, Z. Kotzer <[EMAIL PROTECTED]> wrote: I can not get error notifications when an asynchat based client tries toconnect to a non-responsive addres

Re: bisect and Queue modules in Python 2.4

2006-03-16 Thread Abdullah Yoldas
):    asynchat.fifo.__init__(self, list)    self.have_deque = hasattr(self.list, 'appendleft')     def push_front(self, object):    if self.have_deque:    self.list.appendleft(object)    else:    self.list.insert(0, object) Abdullah Yoldas On 3/16/06, SA Trygubenko <[EM