Re: help me subcorrect

2020-04-11 Thread Souvik Dutta
Did you send a screenshot? If so then understand that this mailing list does not support photos so you cannot send that. Try giving us a verbal description. And if you write anything other that the sub then sorry that is my Gmail's fault. Souvik flutter dev On Sat, Apr 11, 2020, 8:32 PM khuchee

Getting ReadTimeoutError for tensorflow while deploying python app to Azure Web App

2020-04-11 Thread kargawal . abhishek
remote: [20:44:36+] Collecting tensorflow==2.1.0 remote: [20:44:36+] Downloading tensorflow-2.1.0-cp37-cp37m-manylinux2010_x86_64.whl (421.8 MB) remote: ... remote: ... remote:

Re: RFC: For Loop Invariants

2020-04-11 Thread Peter J. Holzer
On 2020-04-10 15:44:05 -0500, Elliott Dehnbostel wrote: > *Consider the following trivial for-loop:* > > chars = "abcaaabkjzhbjacvb" > seek = {'a','b','c'} > count = 0 > for a in chars: > if a in seek: > count += 1 > > Gross. Twice nested for a simple count. > [...] > I propose th

Re: py2c - an open source Python to C/C++ is looking for developers

2020-04-11 Thread jared . h . lam
On Monday, July 30, 2012 at 6:27:04 AM UTC-7, manian...@gmail.com wrote: > I created py2c ( http://code.google.com/p/py2c )- an open source Python to > C/C++ translator! > py2c is looking for developers! > To join create a posting in the py2c-discuss Google Group or email me! > Thanks > PS:I hope

Re: problem in installing

2020-04-11 Thread Souvik Dutta
You are running the installer instead of the program itself. Try searching idle from the start menu and run it in that way. Souvik flutter dev On Sat, Apr 11, 2020, 8:36 PM shina sameeran wrote: > i tried to install python 3.8.2 in my HP windows 8 laptop(core i3). after > installation when i tr

problem in installing

2020-04-11 Thread shina sameeran
i tried to install python 3.8.2 in my HP windows 8 laptop(core i3). after installation when i tried to open the programme it shows window says modify, repair or uninstall. it does not work after modify and repair. please help. yours sincerely shina m j chennai -- https://mail.python.org/mail

plead add persian languges

2020-04-11 Thread m. bahrami
Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

help me subcorrect

2020-04-11 Thread khuchee
Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

Re: RFC: For Loop Invariants

2020-04-11 Thread Terry Reedy
On 4/10/2020 4:44 PM, Elliott Dehnbostel wrote: chars = "abcaaabkjzhbjacvb" seek = {'a','b','c'} count = 0for a in chars: if a in seek: count += 1 Why did you repeatly omit the \n after 0? Please paste code that ran Gross. Twice nested for a simple count. Twice indented d

Re: Is it possible to inheret a metaclass.

2020-04-11 Thread Peter Otten
Antoon Pardon wrote: > > > Op 9/04/20 om 18:37 schreef Peter Otten: >> Antoon Pardon wrote: >> >>> I am experimenting with subclasses that all need the same metaclass as >>> the base class. Is there a way to make the metaclass be inherited, so >>> that you don't have to repeat the "metaclass =

Re: RFC: For Loop Invariants

2020-04-11 Thread Rhodri James
On 10/04/2020 21:44, Elliott Dehnbostel wrote: Hello Everyone, I've also posted this to the python-ideas mailing list, but I thought to post here as well for a more general audience. If I've done this incorrectly, please let me know so that I can improve/revise. I'm new to the Python community

Re: Is it possible to inheret a metaclass.

2020-04-11 Thread Pieter van Oostrum
Pieter van Oostrum writes: > Your Pardon is not a class, it is a function. Class A is created by > type(cls, *args), so 'type' is the metaclass of A, and therefore also of > B. > Creation of B does not call Pardon. With a class it *does* work: In [74]: class Pardon(type): ... def __ini