Re: Single line if statement with a continue

2022-12-17 Thread Abdullah Nafees
Just wanted to say that a silent reader like me learnt more about PEP-8 solely from this thread than my mentor at work or any other course I have taken earlier this year. Thank you so much. On Sun, 18 Dec 2022, 00:16 Rob Cliffe via Python-list, < python-list@python.org> wrote: > > > On 15/12/2022

Re: PythonCE successfully inst'ed, but scripts don't work. Please help.

2014-05-29 Thread Abdullah Indorewala
Hi, I know you posted this 15 years ago but I recently stumbled across your post here : https://mail.python.org/pipermail/python-list/1999-May/018340.html And I am in the same situation (kind of). I can’t get Python to install on my MobilePro 770 running Windows CE 3.0. Are you still availabl

[no subject]

2012-01-07 Thread abdullah zuberi
hello ? -- http://mail.python.org/mailman/listinfo/python-list

Re: Using Python To Launch Python

2008-07-15 Thread Aquil H. Abdullah
Ahh, Win-BASH cool!!! On Tue, Jul 15, 2008 at 10:41 AM, Aquil H. Abdullah < [EMAIL PROTECTED]> wrote: > Ack, .bat files! Yes, you are correct Windows does not ship with Python, > and there are ways to get bash (cygwin) on your Windoze system. I am > leaning towards a solution

Re: Using Python To Launch Python

2008-07-15 Thread Aquil H. Abdullah
another. Thank you for all of your suggestions. On Mon, Jul 14, 2008 at 8:39 PM, Derek Martin <[EMAIL PROTECTED]> wrote: > On Mon, Jul 14, 2008 at 05:40:43PM -0400, Aquil H. Abdullah wrote: > > You've hit the proverbial nail with the hammer. The problem is that my > > appl

Re: DO YOU KNOW ANY THING ABOUT ISLAM???

2008-04-30 Thread ABDULLAH
On Apr 27, 1:52 pm, Lie <[EMAIL PROTECTED]> wrote: > On Apr 24, 1:40 pm, ABDULLAH <[EMAIL PROTECTED]> wrote: > > > What you are about to read might sound unusual but it could be very > > enlightened. So I would be thankful if you give my article 5 minute > &g

DO YOU KNOW ANY THING ABOUT ISLAM???

2008-04-23 Thread ABDULLAH
What you are about to read might sound unusual but it could be very enlightened. So I would be thankful if you give my article 5 minute of your value time. THANK YOU Islam is a total system of living. A Muslim is supposed to live in peace and harmony with all these segments; hence, a Muslim is any

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

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

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