[Python-Dev] [RELEASE] Python 3.8.2rc1 is now available for testing

2020-02-11 Thread Łukasz Langa
Python 3.8.2rc1 is the release candidate of the second maintenance release of 
Python 3.8. Go get it here:

https://www.python.org/downloads/release/python-382rc1/ 


Assuming no critical problems are found prior to 2020-02-17, the scheduled 
release date for 3.8.2 (as well as 3.9.0 alpha 4!), no code changes are planned 
between this release candidate and the final release.
That being said, please keep in mind that this is a pre-release of 3.8.2 and as 
such its main purpose is testing.

Maintenance releases for the 3.8 series will continue at regular bi-monthly 
intervals, with 3.8.3 planned for April 2020 (during sprints at PyCon US).

What’s new?

The Python 3.8 series is the newest feature release of the Python language, and 
it contains many new features and optimizations. See the “What’s New in Python 
3.8 ” document for more 
information about features included in the 3.8 series.

Detailed information about all changes made in version 3.8.2 specifically can 
be found in its change log 
.

We hope you enjoy Python 3.8!

Thanks to all of the many volunteers who help make Python Development and these 
releases possible! Please consider supporting our efforts by volunteering 
yourself or through organization contributions to the Python Software 
Foundation.

https://www.python.org/psf/ 


- Ł
___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/TNYC4DPNMKAGRERBFEXTJ4RE4CRB7WW3/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: The Python 2 death march

2020-02-11 Thread Sumana Harihareswara
Per 
https://discuss.python.org/t/petition-abandon-plans-to-ship-a-2-7-18-in-april/2946/ 
I have now:


* written a PR to update PEP 373 to mark that the code freeze happened 
on 1 January https://github.com/python/peps/pull/1304
* updated the Python 3 Q&A 
http://python-notes.curiousefficiency.org/en/latest/python3/questions_and_answers.html#when-is-the-last-release-of-python-2-7-coming-out 
similarly 
https://bitbucket.org/ncoghlan/misc/pull-requests/21/update-python-3-q-a-to-reflect-that-sunset/diff 

* added a "what happens now?" section to 
https://www.python.org/doc/sunset-python-2/



--
Sumana Harihareswara
___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/BQUVV2RUHFGMIBWWTTQQJS2VUSVV4OMS/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Pull Request bpo-1812

2020-02-11 Thread Peter Donis

Can someone please review the subject pull request?

Pull request link here:

https://github.com/python/cpython/pull/17385

Issue tracker link here:

https://bugs.python.org/issue1812

Thank you very much!

Peter Donis
pdo...@peterdonis.net
___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/32BFCXWK3SNCTFRGBHQEZW4RQKM2B4MQ/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: Pull Request bpo-1812

2020-02-11 Thread Guido van Rossum
For folks who wouldn't click on the links, the title of the issue is
"doctest _load_testfile function -- newline handling seems incorrect", it
was filed in 2008 and has many comments, plus diffs dating back to 2008.

The Pull Request title is "Fix newline conversion when doctest.testfile
loads from a package whose loader has a get_data method", it looks
relatively straightforward and thorough. Presumably it's based on the diffs
from the issue.

The author of the issue and PR are the same as the OP above.

This will be a doozie for whoever wants to volunteer!

On Tue, Feb 11, 2020 at 5:22 PM Peter Donis  wrote:

> Can someone please review the subject pull request?
>
> Pull request link here:
>
> https://github.com/python/cpython/pull/17385
>
> Issue tracker link here:
>
> https://bugs.python.org/issue1812
>
> Thank you very much!
>
> Peter Donis
> pdo...@peterdonis.net
> ___
> Python-Dev mailing list -- python-dev@python.org
> To unsubscribe send an email to python-dev-le...@python.org
> https://mail.python.org/mailman3/lists/python-dev.python.org/
> Message archived at
> https://mail.python.org/archives/list/python-dev@python.org/message/32BFCXWK3SNCTFRGBHQEZW4RQKM2B4MQ/
> Code of Conduct: http://python.org/psf/codeofconduct/
>


-- 
--Guido van Rossum (python.org/~guido)
*Pronouns: he/him **(why is my pronoun here?)*

___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/MWCYZ7764EYGCGJFNY7IHASLXSDXJJIX/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: Pull Request bpo-1812

2020-02-11 Thread Zachary Ware
On Tue, Feb 11, 2020 at 9:59 PM Guido van Rossum  wrote:
> The Pull Request title is "Fix newline conversion when doctest.testfile loads 
> from a package whose loader has a get_data method", it looks relatively 
> straightforward and thorough.

I've submitted a review; the actual code change is very simple and
straightforward, but it would be good for someone with more experience
with `importlib` (specifically setting up or mocking out a custom
`__loader__.get_data`) to take a look at the tests and make a better
suggestion than mine about how to make sure we're cleaning up
properly.

-- 
Zach
___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/DSKFDCYGLAK32FQZL7JARMJUDQPJOG2V/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: Pull Request bpo-1812

2020-02-11 Thread Guido van Rossum
Thank you, thank you! Hopefully we can pull this one over the finish line,
and it won't have to linger for another decade. :-)

On Tue, Feb 11, 2020 at 8:42 PM Zachary Ware  wrote:

> On Tue, Feb 11, 2020 at 9:59 PM Guido van Rossum  wrote:
> > The Pull Request title is "Fix newline conversion when doctest.testfile
> loads from a package whose loader has a get_data method", it looks
> relatively straightforward and thorough.
>
> I've submitted a review; the actual code change is very simple and
> straightforward, but it would be good for someone with more experience
> with `importlib` (specifically setting up or mocking out a custom
> `__loader__.get_data`) to take a look at the tests and make a better
> suggestion than mine about how to make sure we're cleaning up
> properly.
>
> --
> Zach
> ___
> Python-Dev mailing list -- python-dev@python.org
> To unsubscribe send an email to python-dev-le...@python.org
> https://mail.python.org/mailman3/lists/python-dev.python.org/
> Message archived at
> https://mail.python.org/archives/list/python-dev@python.org/message/DSKFDCYGLAK32FQZL7JARMJUDQPJOG2V/
> Code of Conduct: http://python.org/psf/codeofconduct/
>


-- 
--Guido van Rossum (python.org/~guido)
*Pronouns: he/him **(why is my pronoun here?)*

___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/GC3HQH4UTXPHKFDJUDCUF3KEQVGPL42T/
Code of Conduct: http://python.org/psf/codeofconduct/