Is there a way to install 3.4.10, without Visual Studio?

2020-09-24 Thread dcwh...@gmail.com
Hi, I'm downgrading, for one particular project, and am trying to install 3.4.10 32 bit There's no Windows installer for this, so I installed 3.4, and then copied the contents of https://www.python.org/ftp/python/3.4.10/Python-3.4.10.tgz into the c:\Python34 folder and subfolders. The c:\Py

Re: Is there a way to install 3.4.10, without Visual Studio?

2020-09-24 Thread Chris Angelico
On Thu, Sep 24, 2020 at 5:36 PM dcwh...@gmail.com wrote: > Should I just use the most recent 3.4.x version that has a Windows Installer, > and not worry about the final 3.4.10 version? Or is there a way to get to > 3.4.10? > I would STRONGLY recommend using a newer Python rather than pinning y

[RELEASE] Python 3.8.6 is now available

2020-09-24 Thread Ɓukasz Langa
Python 3.8.6 is the sixth maintenance release of Python 3.8. Go get it here: https://www.python.org/downloads/release/python-386/ Maintenance releases for the 3.8 series will continue at regular bi-monthly intervals, with 3.8.7 planned for

Re: python show folder files and not subfolder files

2020-09-24 Thread Terry Reedy
On 9/23/2020 7:24 PM, pascal z via Python-list wrote: Please advise if the following is ok (i don't think it is) #!/usr/bin/env python3 # -*- coding: utf-8 -*- import os csv_contents = "" output_file = '/home/user/Documents/csv/output3csv.csv' Lpath = '/home/user/Documents/' csv_contents = "F

stackless python 2.7.9 and openssl-1.1.1g

2020-09-24 Thread bhashkar prakash Singh
Hi, I am using stackless Python 2.7.9 in my project and openssl-1.0.2q. I just upgraded the Openssl version to 1.1.1g, due to which python compilation started failing. So, I patched _hashopenssl.c and _ssl.c file in Python Modules as per new openssl to make compilation successful. But when I ru

Re: stackless python 2.7.9 and openssl-1.1.1g

2020-09-24 Thread Barry Scott
> On 24 Sep 2020, at 19:21, bhashkar prakash Singh > wrote: > > Hi, > > I am using stackless Python 2.7.9 in my project and openssl-1.0.2q. > I just upgraded the Openssl version to 1.1.1g, due to which python > compilation started failing. So, I patched _hashopenssl.c and _ssl.c file > in

Question

2020-09-24 Thread Michael Boom
I have a Python manager and clients. I added a feature that if the client or server are killed, they will be restarted. When I restart the server after being killed the clients get a broken pipe error, but the connect call that worked on the first connect, doesn't work now. When a client is re

Re: stackless python 2.7.9 and openssl-1.1.1g

2020-09-24 Thread bhashkar prakash Singh
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 _hashopenssl.c and _ssl.c to work with openssl-1.1.1g ? Regards, Bhashkar On Fri, Sep 25,

list comprehension namespace problem

2020-09-24 Thread Frank Millman
Hi all I have a problem related (I think) to list comprehension namespaces. I don't understand it enough to figure out a solution. In the debugger, I want to examine the contents of the current instance, so I can type (Pdb) dir(self) and get the result with no problem. However, it is

Re: list comprehension namespace problem

2020-09-24 Thread Chris Angelico
On Fri, Sep 25, 2020 at 3:43 PM Frank Millman wrote: > > Hi all > > I have a problem related (I think) to list comprehension namespaces. I > don't understand it enough to figure out a solution. > > In the debugger, I want to examine the contents of the current instance, > so I can type > > (P

Re: list comprehension namespace problem

2020-09-24 Thread Frank Millman
On 2020-09-25 7:46 AM, Chris Angelico wrote: On Fri, Sep 25, 2020 at 3:43 PM Frank Millman wrote: Hi all I have a problem related (I think) to list comprehension namespaces. I don't understand it enough to figure out a solution. In the debugger, I want to examine the contents of the current