Issue 27283: Add a "What's New" entry for PEP 519 (original) (raw)

Created on 2016-06-09 23:01 by brett.cannon, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pep_519_whatsnew.diff brett.cannon,2016-08-19 22:51 review
pep_519_whatsnew.diff brett.cannon,2016-08-20 17:04 Addresses SilentGhost's and Berker's comments review
Messages (5)
msg268066 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2016-06-09 23:01
Issue to track the fact that I need to write the "What's New" entry once all other PEP 519-related work is finished.
msg273163 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2016-08-19 22:51
While I wait on various patches related to PEP 519 to land, I have gone ahead and written the What's New entry.
msg273186 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-08-20 04:20
pep_519_whatsnew.diff looks pretty good to me, thanks! It would be nice to add a simple example to demonstrate the feature (like we did for PEP 498: https://docs.python.org/3.6/whatsnew/3.6.html#pep-498-formatted-string-literals) >>> import pathlib >>> with open(pathlib.Path('README')) as f: ... readme = f.read() ...
msg273227 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2016-08-20 17:04
Here is an updated patch to address SilentGhost's review comments and a couple of examples as Berker suggested.
msg273736 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2016-08-26 21:46
Applied in https://hg.python.org/cpython/rev/95361959d451
History
Date User Action Args
2022-04-11 14:58:32 admin set github: 71470
2016-08-26 21:46:48 brett.cannon set status: open -> closedresolution: fixedmessages: + stage: commit review -> resolved
2016-08-20 17:04:32 brett.cannon set files: + pep_519_whatsnew.diffmessages: +
2016-08-20 04:20:53 berker.peksag set nosy: + berker.peksagmessages: + type: enhancementstage: patch review -> commit review
2016-08-19 22:51:14 brett.cannon set stage: needs patch -> patch review
2016-08-19 22:51:07 brett.cannon set files: + pep_519_whatsnew.diffkeywords: + patchmessages: +
2016-06-24 20:43:30 brett.cannon unlink issue27182 dependencies
2016-06-09 23:02:31 brett.cannon link issue27182 dependencies
2016-06-09 23:01:59 brett.cannon create