Message328266
| Author |
xtreak |
| Recipients |
docs@python, matrixise, mdk, serhiy.storchaka, thatiparthy, xtreak |
| Date |
2018-10-22.17:34:00 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1540229640.14.0.788709270274.issue35042@psf.upfronthosting.co.za> |
| In-reply-to |
|
| Content |
If I am understanding this correctly the :pep: role is already present and only that PEP references that don't have this role are being updated now?
➜ cpython git:(master) rg ':pep:`\d+`' | grep 'rst' | grep -Ev 'NEWS|whatsnew' | wc
324 2686 27228
References that don't have the role are being updated along with :PEP: changed to :pep: in the PR? (Around 30 entries)
➜ cpython git:(master) rg 'PEP \d+' | grep 'rst' | grep -Ev 'NEWS|whatsnew' | wc
21 228 1891
➜ cpython git:(master) rg ':PEP:`\d+`' | grep 'rst' | grep -Ev 'NEWS|whatsnew' | wc
6 51 517
I think older NEWS entries can be left behind like the PR changes whatsnew for Python 2.0, 2.1, 2.5 and they won't be back ported I personally feel little value in changing them though doc changes have been done on those files in 2016 and up to the reviewer.
Thanks |
|