Re: learning python ...

2021-05-23 Thread hw
On 5/24/21 12:03 AM, Cameron Simpson wrote: On 23May2021 21:02, Stestagg wrote: On Sun, 23 May 2021 at 20:37, hw wrote: I don't know about shadowing. Shadowing is effectively saying “within this bit of code, (scope) I’m going to use an already-used name for my own value” An example might

Re: learning python ...

2021-05-23 Thread hw
PS: On 5/24/21 7:20 AM, hw wrote: There is even no indication from the output from the program before it aborts with an error message that something might be wrong:  For 'type(float)', it prints "" just like it does for int. How is anyone supposed to debug stuff like that? Ok, it prints ""

Re: learning python ...

2021-05-23 Thread Igor Korot
Hi, On Mon, May 24, 2021 at 12:26 AM hw wrote: > > On 5/23/21 10:02 PM, Stestagg wrote: > > > > > > On Sun, 23 May 2021 at 20:37, hw > > wrote: > > > > On 5/23/21 7:28 PM, Peter Otten wrote: > > > On 23/05/2021 06:37, hw wrote: > > >> > > >> Hi, > >

Re: learning python ...

2021-05-23 Thread hw
On 5/23/21 10:02 PM, Stestagg wrote: On Sun, 23 May 2021 at 20:37, hw > wrote: On 5/23/21 7:28 PM, Peter Otten wrote: > On 23/05/2021 06:37, hw wrote: >> >> Hi, >> >> I'm starting to learn python and have made a little example program

Re: Question for potential python development contributions on Windows

2021-05-23 Thread Terry Reedy
On 5/23/2021 12:20 PM, pjfarl...@earthlink.net wrote: I asked this question on python-dev last week but did not get an answer. If anyone here know the answer I would appreciate it. The Python Developers Guide specifically states to get VS2017 for developing or enhancing python on a Windows syst

Re: Use Chrome's / Firefox's dev-tools in python

2021-05-23 Thread Martin Di Paola
"unselectable text" not necessary means that it is an image. There is a CSS property that you can change to make a text selectable/unselectable. And if it is an image, it very likely that it comes from the server as such, so "intercepting" the packet coming from there will be for nothing: you

Re: learning python ...

2021-05-23 Thread Cameron Simpson
On 23May2021 21:02, Stestagg wrote: >On Sun, 23 May 2021 at 20:37, hw wrote: >> I don't know about shadowing. > >Shadowing is effectively saying “within this bit of code, (scope) I’m going >to use an already-used name for my own value” An example might make this clearer: x = 1 # global vari

Re: Issue in software

2021-05-23 Thread Mats Wichmann
On 5/22/21 10:45 PM, pradeep Y wrote: I I couldn't get the solution for this issue since last week will you please help me to solve this issue the issue is when I opened command prompt this below message will Pop up "The program can't start because api-ms-win-crt-runtime-[1-1-0.dl] is missing f

Re: learning python ...

2021-05-23 Thread Stestagg
On Sun, 23 May 2021 at 20:37, hw wrote: > On 5/23/21 7:28 PM, Peter Otten wrote: > > On 23/05/2021 06:37, hw wrote: > >> > >> Hi, > >> > >> I'm starting to learn python and have made a little example program > >> following a tutorial[1] I'm attaching. > >> > >> Running it, I'm getting: > >> > >>

Re: learning python ...

2021-05-23 Thread MRAB
On 2021-05-23 20:34, hw wrote: On 5/23/21 7:28 PM, Peter Otten wrote: On 23/05/2021 06:37, hw wrote: Hi, I'm starting to learn python and have made a little example program following a tutorial[1] I'm attaching. Running it, I'm getting: Traceback (most recent call last):    File "[...]/h

Re: learning python ...

2021-05-23 Thread hw
On 5/23/21 7:28 PM, Peter Otten wrote: On 23/05/2021 06:37, hw wrote: Hi, I'm starting to learn python and have made a little example program following a tutorial[1] I'm attaching. Running it, I'm getting: Traceback (most recent call last):    File "[...]/hworld.py", line 18, in pri

Re: learning python ...

2021-05-23 Thread Peter Otten
On 23/05/2021 06:37, hw wrote: Hi, I'm starting to learn python and have made a little example program following a tutorial[1] I'm attaching. Running it, I'm getting: Traceback (most recent call last):   File "[...]/hworld.py", line 18, in     print(isinstance(int, float)) TypeError: is

Re: Issue in software

2021-05-23 Thread Igor Korot
Hi, On Sun, May 23, 2021 at 11:50 AM pradeep Y wrote: > > I I couldn't get the solution for this issue since last week will you > please help me to solve this issue the issue is when I opened command > prompt this below message will Pop up > > > "The program can't start because api-ms-win-crt-run

Issue in software

2021-05-23 Thread pradeep Y
I I couldn't get the solution for this issue since last week will you please help me to solve this issue the issue is when I opened command prompt this below message will Pop up "The program can't start because api-ms-win-crt-runtime-[1-1-0.dl] is missing from your computer.try reinstalling the p

Re: Use Chrome's / Firefox's dev-tools in python

2021-05-23 Thread Curt
On 2021-05-23, max pothier wrote: > Already tried this, only works for messages and not for homework etc. https://play.google.com/store/apps/details?id=com.androz2091.pronote_notifications&gl=FR Notifications pour Pronote vous permet de recevoir des notifications push lorsqu'une nouvelle note

Re: Use Chrome's / Firefox's dev-tools in python

2021-05-23 Thread max pothier
Already tried this, only works for messages and not for homework etc. -- https://mail.python.org/mailman/listinfo/python-list

Re: Use Chrome's / Firefox's dev-tools in python

2021-05-23 Thread Curt
On 2021-05-23, max pothier wrote: > @Curt: That is notifications for the ENT app, I want the notifications > for the app named ProNote. ENT is for e-mails and Pronote for > homework, quotes, etc. https://doc.index-education.com/fr-fr/pn/2018/N/Notification.htm Notifications dans PRONOTE  Para

Re: Use Chrome's / Firefox's dev-tools in python

2021-05-23 Thread max pothier
@Curt: That is notifications for the ENT app, I want the notifications for the app named ProNote. ENT is for e-mails and Pronote for homework, quotes, etc. -- https://mail.python.org/mailman/listinfo/python-list

learning python ...

2021-05-23 Thread hw
Hi, I'm starting to learn python and have made a little example program following a tutorial[1] I'm attaching. Running it, I'm getting: Traceback (most recent call last): File "[...]/hworld.py", line 18, in print(isinstance(int, float)) TypeError: isinstance() arg 2 must be a type o

Re: Use Chrome's / Firefox's dev-tools in python

2021-05-23 Thread max pothier
Hi, Seems like that could be a method of doing things. Just one clarification: the website has unselectable text, looks like it's an image strangely generated, so if I can get the packet with it, it would be perfect. As I said (I think), logging in with Selenium was already possible, and I could

Re: Use Chrome's / Firefox's dev-tools in python

2021-05-23 Thread Curt
On 2021-05-21, max pothier wrote: > Hello, Thanks for you answer! Actually my goal is not to > automatically get the file once I open the page, but more to > periodically check the site and get a notification when there's new > homework or, at the morning, know when an hour is cancelled, so I > d

Question for potential python development contributions on Windows

2021-05-23 Thread pjfarley3
I asked this question on python-dev last week but did not get an answer. If anyone here know the answer I would appreciate it. The Python Developers Guide specifically states to get VS2017 for developing or enhancing python on a Windows system. Is it still correct to specifically use VS2017 , or

mimedecode 3.1.0

2021-05-23 Thread Oleg Broytman
mimedecode WHAT IS IT Mail users, especially in non-English countries, often find that mail messages arrived in different formats, with different content types, in different encodings and charsets. Usually this is good because it allows us to use appropriate f