This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Patrick Lehmann
Recipients Patrick Lehmann, docs@python, lukasz.langa, r.david.murray, terry.reedy
Date 2016-11-19.03:30:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479526248.71.0.640863880709.issue28710@psf.upfronthosting.co.za>
In-reply-to
Content
Hello,

I used this regexp on all files:
--------------------------------------
match pattern: `([A-Za-z0-9_]+)'
replace pattern ``\1``
--------------------------------------
I assumed that only identifiers where quoted in such way. I think my editor found around 139 matches in the whole CPython repository.

I found some of these markup in non docstring strings, which I reverted as far as I found them by manually reviewing all changed files.

For a colored diff, see my Git branch: https://github.com/Paebbels/cpython/commit/6d3f348f71b5b0ae9fbfcb8fdbba72dc5fac428a?ts=2
There is also a PR-, commit-, and line-based comment feature box GitHub.

How you solve it is up to you, but I would like to get rid of hundreds of warnings in my Sphinx runs, when modules are inherting code (and docstrings) from Python.

Kind regards
    Patrick
History
Date User Action Args
2016-11-19 03:30:48Patrick Lehmannsetrecipients: + Patrick Lehmann, terry.reedy, r.david.murray, docs@python, lukasz.langa
2016-11-19 03:30:48Patrick Lehmannsetmessageid: <1479526248.71.0.640863880709.issue28710@psf.upfronthosting.co.za>
2016-11-19 03:30:48Patrick Lehmannlinkissue28710 messages
2016-11-19 03:30:47Patrick Lehmanncreate