Re: uninstall

2021-05-03 Thread Sian Doherty
Thanks for the advice. I found a stack overflow post that suggested just removing manually and cleaning out the registry too. I think I have it under control but I haven't gotten around to reinstalling it yet. On Sun, 2 May 2021, 10:05 Mats Wichmann, wrote: > On 4/29/21 6:59 PM, Sian Doherty wro

[RELEASE] Python 3.8.10, 3.9.5, and 3.10.0b1 are now available

2021-05-03 Thread Łukasz Langa
This has been a very busy day for releases and on behalf of the Python development community we’re happy to announce the availability of three new Python releases. Python 3.10 is now in Beta Get it here: Python 3.10.0b1 Python 3.10 is s

Re: Python language packages isn't working in Visual Studio Code

2021-05-03 Thread Joel Goldstick
On Mon, May 3, 2021 at 2:00 PM inhahe wrote: > > I don't think attaching images works on this kind of list. Maybe send a > link to it.. > > On Mon, May 3, 2021 at 1:51 PM Osmany Guerra > wrote: > > > Hi, I have problem with the python interpreter in the Visual Studio Code. > > It was running ok,

Re: Python language packages isn't working in Visual Studio Code

2021-05-03 Thread inhahe
I don't think attaching images works on this kind of list. Maybe send a link to it.. On Mon, May 3, 2021 at 1:51 PM Osmany Guerra wrote: > Hi, I have problem with the python interpreter in the Visual Studio Code. > It was running ok, but now isn't working. I have downloaded, installed and > unis

Re: Decoratored functions parsed differently by ast stdlib between 3.7 and 3.8

2021-05-03 Thread Mike Lee Williams
On Monday, May 3, 2021 at 10:41:14 AM UTC-7, Terry Reedy wrote: > > Answering my own question: the behavior was changed by > > https://github.com/python/cpython/pull/9731. > Since this patch, Mark Shannon has revised line numbering and tracing > and replaced the internal lineno data structure. Yo

Python language packages isn't working in Visual Studio Code

2021-05-03 Thread Osmany Guerra
Hi, I have problem with the python interpreter in the Visual Studio Code. It was running ok, but now isn't working. I have downloaded, installed and unistalled several times without having results. How could I fix that? I'm using windows 10 64-bit, VSCode x64-1.55.2, and Python 3.9.4. I'm sending

Removing For-Loop

2021-05-03 Thread Korn Moffle
Hi, I have been banging my head against the wall - I know I can get rid of for-loop here, but can't figure out how. Please help! I suspect I can do np.sum on the whole adGroup but I am lacking the imagination to visualize it. for ind in range(adGroup.shape[0]): row = adGroup.iloc[ind, :

for the requirement of pygames

2021-05-03 Thread mishrasamir2004
Sir/madam , I'm a user of python, and I'm requesting you to provide me pygames . Samir Mishra Phone no. = +91 7044421272 Sent from [1]Mail for Windows 10 References Visible links 1. https://go.microsoft.com/fwlink/?LinkId=550986 -- https

byexample: free, open source tool to find snippets of code in your docs and execute them as regression tests

2021-05-03 Thread Martin Di Paola
Hi everyone, I would like to share a free, open source tool with you that I've been developing in the last few years. You'll be probably familiar with things like this in the Python documentation: ``` >>> 1 + 3 4 ``` byexample will find those snippets, it will execute "1 + 3" and the output

Re: Decoratored functions parsed differently by ast stdlib between 3.7 and 3.8

2021-05-03 Thread Terry Reedy
On 4/30/2021 11:07 PM, Mike Lee Williams wrote: On Friday, April 30, 2021 at 7:55:10 PM UTC-7, Mike Lee Williams wrote: This trivial bit of code is parsed differently by the ast module between python 3.7 and python 3.8. I'm trying to figure out what changed and why, and once I know that, if it's