Re: stackless python 2.7.9 and openssl-1.1.1g

2020-09-25 Thread Barry
>> On 25 Sep 2020, at 03:28, bhashkar prakash Singh >> wrote: >  > Hi Barry, > > Thanks for your response. > > I am not an expert in python code. Could you please elaborate a bit more on > this. Which cpython code are you referring to? > did you modify other files also apart from _hashop

FW: pipenv has issues

2020-09-25 Thread Rhett Prince
see below: pipenv gets lost and crashes. hi, where do we write to to post defects in pipenv? on a windows 8.1 machine after installing pipenv with poip as administrator pipenv simply crashes with a trace dump it gets confused with an old version of anaconda and crashes. my base pyt

Use of a variable in parent loop

2020-09-25 Thread Stephane Tougard via Python-list
Hello All, I've been working with Perl a long time and recently started to use Python. I've been surprised by one behavior of Python. In Perl: ===PERL=== #!/usr/pkg/bin/perl use strict; if(4 == 4) { my $name = "Stephane"; print("$name\n" } print("Out $name\n"); = This