Re: sharing data across Examples docstrings

2022-01-14 Thread Martin Di Paola
Hello, I understand that you want to share data across examples (docstrings) because you are running doctest to validate them (and test). The doctest implementation evaluates each docstring separately without sharing the context so the short answer is "no". This is a limitation of doctest b

Re: keep getting a syntax error on the very first program I am running

2022-01-14 Thread Jon Ribbens via Python-list
On 2022-01-15, Bob Griffin wrote: >I am running this program and keep getting this error. Is this normal? > >Invalid syntax. Perhaps you forgot a comma? > >Also the t in tags is highlighted. > >I even tried different versions of Python also. > >Python 3.10.1 (tags/v3.10.1:2cd

Re: keep getting a syntax error on the very first program I am running

2022-01-14 Thread MRAB
On 2022-01-15 01:12, Bob Griffin wrote: I am running this program and keep getting this error. Is this normal? Invalid syntax. Perhaps you forgot a comma? Also the t in tags is highlighted. I even tried different versions of Python also. Python 3.10.1 (tags/v3.10

keep getting a syntax error on the very first program I am running

2022-01-14 Thread Bob Griffin
I am running this program and keep getting this error. Is this normal? Invalid syntax. Perhaps you forgot a comma? Also the t in tags is highlighted. I even tried different versions of Python also. Python 3.10.1 (tags/v3.10.1:2cd268a, Dec 6 2021, 19:10:37) [MSC v.1929

[RELEASE] Python 3.10.2, 3.9.10, and 3.11.0a4 are now available

2022-01-14 Thread Łukasz Langa
Hi there, before we begin the usual round of release notes, please do note that the three new versions of Python released today do not contain Windows installers yet. This is temporary, due to a more complex than expected code signing certificate renewal. We’ve held the releases all week while t

Re: Using PIP in Python 3.10 on Windows 10

2022-01-14 Thread Eryk Sun
On 1/14/22, Mats Wichmann wrote: > On 1/14/22 10:40, Jonathan Gossage wrote: > > By this do you mean the python.org installer or the Microsoft Store > installer - they're similar but have some differences. Jonathan is not using the store app. The store app is installed to the system in "%ProgramF

Re: Using PIP in Python 3.10 on Windows 10

2022-01-14 Thread MRAB
On 2022-01-14 17:40, Jonathan Gossage wrote: I have installed Python 3.10.1 on Windows 10 using the recommended Windows Installer. When I try to access PIP from the command line, I get the following result, even though Python itself is accessible. C:\Users\jgoss>python Python 3.10.1 (tags/v3.10

Re: Using PIP in Python 3.10 on Windows 10

2022-01-14 Thread Mats Wichmann
On 1/14/22 10:40, Jonathan Gossage wrote: > I have installed Python 3.10.1 on Windows 10 using the recommended Windows > Installer. When I try to access PIP from the command line, I get the > following result, even though Python itself is accessible. By this do you mean the python.org installer

Using PIP in Python 3.10 on Windows 10

2022-01-14 Thread Jonathan Gossage
I have installed Python 3.10.1 on Windows 10 using the recommended Windows Installer. When I try to access PIP from the command line, I get the following result, even though Python itself is accessible. C:\Users\jgoss>python Python 3.10.1 (tags/v3.10.1:2cd268a, Dec 6 2021, 19:10:37) [MSC v.1929

Re: What to write or search on github to get the code for what is written below:

2022-01-14 Thread Dennis Lee Bieber
On Thu, 13 Jan 2022 23:08:19 + (UTC), Avi Gross declaimed the following: >So the suggestions to copy the data ONCE into something else (a CSV, database, >whatever) that can be used externally are reasonable but seem to be resisted. >I would guess some of the "missing" functionality others w