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

[issue45777] Issue in reading files with a path longer than 256 letters after latest update

2021-11-10 Thread Abdullah Alnajim
Abdullah Alnajim added the comment: LongPathsEnabled value was already one. This issue comes with the new update (3.9.8) [Windows Store version]. I reinstalled the same version (3.9.8) from Windows Store, and the issue was still there. When I tried versions (3.10) and (3.9.7) from (https

[issue45777] Issue in reading files with a path longer than 256 letters after latest update

2021-11-10 Thread Abdullah Alnajim
New submission from Abdullah Alnajim : After updating python to the latest version, an issue related to reading files in long paths (>256 letters) is arisen. Whenever I try to read such a file in Windows 11, I got an exception telling me that the file is not there, even though i

[issue37820] Unnecessary URL scheme exists to allow 'URL: reading file in urllib

2019-08-11 Thread Abdullah
New submission from Abdullah : I am not sure if this was reported before, fixed, or even how to report this. However this issue is similar to https://bugs.python.org/issue35907 # Vulnerability PoC import urllib print urllib.urlopen('URL:/etc/passwd').read()[:30] the result is ## # User

[issue31688] scope error

2017-10-04 Thread abdullah patel
New submission from abdullah patel <abdullahpatel1...@gmail.com>: there should be an error when this code is run. as I have not defined the arguments (I was told by my computer science teacher that it should not work in theory) and parameters but it clearly works. -- as

[issue25196] Installer>Install in user folder by default when you check: for all users

2015-09-20 Thread Abdullah Hilson
Abdullah Hilson added the comment: I am using windows 10, latests updates. Another problem with the installer: It don' t set environnement variable even when checked -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue25196] Installer>Install in user folder by default when you check: for all users

2015-09-20 Thread Abdullah Hilson
New submission from Abdullah Hilson: Hello Just downloaded : https://www.python.org/ftp/python/3.5.0/python-3.5.0-amd64.exe And I launch the install, I check checkbox to install for all users And folder for installation stay at: C:\Users\myusername\AppData\Local\Programs\Python\Python35\ I have

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

[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
for 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 application needs to run under both

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 similar to your second

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 of your value time. THANK YOU

DO YOU KNOW ANY THING ABOUT ISLAM???

2008-04-24 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

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

2006-03-16 Thread Abdullah Yoldas
) 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 address. To validate the problem I changed lib/test/test_asynchat.py

Re: bisect and Queue modules in Python 2.4

2006-03-16 Thread Abdullah Yoldas
.__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 [EMAIL PROTECTED] wrote: Dear All,Python 2.4 (#1, Mar 22 2005, 21:42:42

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