Re: Logging with 2 process in application

2021-02-22 Thread gayatri funde
On Monday, February 22, 2021 at 4:14:53 PM UTC+5:30, Peter Otten wrote: > On 22/02/2021 06:57, gayatri funde wrote: > > On Monday, February 22, 2021 at 11:15:27 AM UTC+5:30, Chris Angelico wrote: > >> On Mon, Feb 22, 2021 at 4:41 PM gayatri funde wrote: > >>> > >>> On Monday, February 22, 2021

Re: Deleting Python 3.8.5

2021-02-22 Thread Bischoop
On 2021-02-22, Vinicius Costa Marques wrote: > Hello there Python team, I’m having this problem were I installed >Python 3.9.2 and then went to unistall 3.8.5 but here is the problem >the version 3.8.5 dosen’t get deleted properly. >The uninstall program says that everything worked but the files >

Re: Deleting Python 3.8.5

2021-02-22 Thread Terry Reedy
On 2/22/2021 2:00 PM, Vinicius Costa Marques wrote: Hello there Python team, I’m having this problem were I installed Python 3.9.2 and then went to unistall 3.8.5 but here is the problem the version 3.8.5 dosen’t get deleted properly. The uninstall program says that everything worked but the f

Re: Deleting Python 3.8.5

2021-02-22 Thread dn via Python-list
On 23/02/2021 08.00, Vinicius Costa Marques wrote: > Hello there Python team, I’m having this problem were I installed Python > 3.9.2 and then went to unistall 3.8.5 but here is the problem the version > 3.8.5 dosen’t get deleted properly. The uninstall program says that > everything worked but

Deleting Python 3.8.5

2021-02-22 Thread Vinicius Costa Marques
Hello there Python team, I’m having this problem were I installed Python 3.9.2 and then went to unistall 3.8.5 but here is the problem the version 3.8.5 dosen’t get deleted properly. The uninstall program says that everything worked but the files for 3.8.5 still exist algong with 3.9.2 can someo

Re: Is there a way to subtract 3 from every digit of a number?

2021-02-22 Thread Peter J. Holzer
On 2021-02-20 13:51:56 -0500, Terry Reedy wrote: > On 2/20/2021 12:02 PM, jak wrote: > > >>> sn = '' > > >>> for x in str(n): > > sn += num[(int(x) - 3) % 10] > > > This works, but suggesting to beginners that they build strings with += is > an O(n*n) trap. Try it with a string of millio

Cheetah3 3.2.6.post1

2021-02-22 Thread Oleg Broytman
Hello! I'm pleased to announce version 3.2.6.post1, the 1st post-release for release 3.2.6 of branch 3.2 of CheetahTemplate3. What's new in CheetahTemplate3 == Improvement and refactoring in CI and tests with ``tox``. There were no changes in the main code, there is

Re: Logging with 2 process in application

2021-02-22 Thread Peter Otten
On 22/02/2021 06:57, gayatri funde wrote: On Monday, February 22, 2021 at 11:15:27 AM UTC+5:30, Chris Angelico wrote: On Mon, Feb 22, 2021 at 4:41 PM gayatri funde wrote: On Monday, February 22, 2021 at 10:47:57 AM UTC+5:30, Dan Stromberg wrote: On Sun, Feb 21, 2021 at 9:10 PM gayatri funde