Re: encapsulating a global variable (BlindAnagram)

2020-02-26 Thread Grant Edwards
On 2020-02-26, Chris Angelico wrote: > On Thu, Feb 27, 2020 at 9:45 AM Grant Edwards > wrote: >> >> On 2020-02-25, Dennis Lee Bieber wrote: >> >> > We seem to have some confusion with the use of the word "static"... >> >> No doubt carrying on the tradition from C, where the 'static' keyword >>

Re: encapsulating a global variable (BlindAnagram)

2020-02-26 Thread Chris Angelico
On Thu, Feb 27, 2020 at 9:45 AM Grant Edwards wrote: > > On 2020-02-25, Dennis Lee Bieber wrote: > > > We seem to have some confusion with the use of the word "static"... > > No doubt carrying on the tradition from C, where the 'static' keyword > is used to mean two completely different, orthogon

Re: encapsulating a global variable (BlindAnagram)

2020-02-26 Thread Grant Edwards
On 2020-02-25, Dennis Lee Bieber wrote: > We seem to have some confusion with the use of the word "static"... No doubt carrying on the tradition from C, where the 'static' keyword is used to mean two completely different, orthogonal things. -- Grant Edwards grant.b.edwards

Re: Need Help Urgently

2020-02-26 Thread Bob Gailer
On Feb 26, 2020 10:56 AM, "Prakash Samal" wrote: > > [ABCD client error]: Connection to broker at 126.0.0.1: lost! > "timestamp":"Wed Feb 19 11:48:41 > > [XYZ]: Connection to broker at 126.0.0.1: lost! > "timestamp":"Wed Feb 19 11:48:40 > > Note: I want to read the error code i.e ABCD Cl

EuroPython 2020: Call for Proposals opens on March 9th

2020-02-26 Thread M.-A. Lemburg
We are happy to announce that the Call for Proposals will open on March 9. It will be left open for three weeks and then close on: Sunday, March 29 23:59:59 CEST While you wait for submissions to open, please check out the Call for Proposals details on our pre-launch website: https://ep2

Need Help Urgently

2020-02-26 Thread Prakash Samal
[ABCD client error]: Connection to broker at  126.0.0.1: lost! "timestamp":"Wed Feb 19 11:48:41 [XYZ]: Connection to broker at  126.0.0.1: lost! "timestamp":"Wed Feb 19 11:48:40 Note: I want to read the error code i.e ABCD Client error from the line and also wrt timestamp value. Let me k

Re: encapsulating a global variable

2020-02-26 Thread Rhodri James
On 25/02/2020 15:06, BlindAnagram wrote: My interest in this stems from wanting to keep the dictionary only available to the function that uses it and also a worry about being called from threaded code. Hiding your dictionary away inside a class or instance isn't going to protect it from threa