@@ -15,36 +15,36 @@ Before you can accept a pull request, you need to make sure that it is ready
1515to enter the public source tree. Ask yourself the following questions:
1616
1717* **Are there ongoing discussions at ** ``bugs.python.org `` **(b.p.o.)? **
18- Read the linked b.p.o. issue. If there are ongoing discussions, then
18+ Read the linked b.p.o. issue. If there are ongoing discussions, then
1919 we need to have a resolution there before we can merge the pull request.
2020
21- * **Was the pull request first made against the appropriate branch? **
21+ * **Was the pull request first made against the appropriate branch? **
2222 The only branch that receives new features is ``main ``, the
2323 in-development branch. Pull requests should only target bug-fix branches
2424 if an issue appears in only that version and possibly older versions.
2525
26- * **Are the changes acceptable? **
27- If you want to share your work-in-progress code on a feature or bugfix,
28- then you can open a ``WIP ``-prefixed pull request, publish patches on
26+ * **Are the changes acceptable? **
27+ If you want to share your work-in-progress code on a feature or bugfix,
28+ then you can open a ``WIP ``-prefixed pull request, publish patches on
2929 the `issue tracker `_, or create a public fork of the repository.
3030
31- * **Do the checks on the pull request show that the test suite passes? **
31+ * **Do the checks on the pull request show that the test suite passes? **
3232 Make sure that all of the status checks are passing.
3333
34- * **Is the patch in a good state? **
35- Check :ref: `patch ` and :ref: `helptriage ` to review what is expected of
34+ * **Is the patch in a good state? **
35+ Check :ref: `patch ` and :ref: `helptriage ` to review what is expected of
3636 a patch.
3737
38- * **Does the patch break backwards-compatibility without a strong reason? **
39- :ref: `Run the entire test suite <runtests >` to make sure that everything
40- still passes. If there is a change to the semantics, then there needs to
41- be a strong reason, because it will cause some peoples' code to break.
38+ * **Does the patch break backwards-compatibility without a strong reason? **
39+ :ref: `Run the entire test suite <runtests >` to make sure that everything
40+ still passes. If there is a change to the semantics, then there needs to
41+ be a strong reason, because it will cause some peoples' code to break.
4242 If you are unsure if the breakage is worth it, then ask on python-dev.
43-
43+
4444* **Does documentation need to be updated? **
45- If the pull request introduces backwards-incompatible changes (e.g.
46- deprecating or removing a feature), then make sure that those changes
47- are reflected in the documentation before you merge the pull request.
45+ If the pull request introduces backwards-incompatible changes (e.g.
46+ deprecating or removing a feature), then make sure that those changes
47+ are reflected in the documentation before you merge the pull request.
4848
4949* **Were appropriate labels added to signify necessary backporting of the pull request? **
5050 If it is determined that a pull request needs to be
@@ -55,21 +55,21 @@ to enter the public source tree. Ask yourself the following questions:
5555 core developers and members of the `Python Triage Team `_ can apply
5656 labels to GitHub pull requests).
5757
58- * **Does the pull request pass a check indicating that the submitter has signed the CLA? **
58+ * **Does the pull request pass a check indicating that the submitter has signed the CLA? **
5959 Make sure that the contributor has signed a `Contributor
60- Licensing Agreement <https://www.python.org/psf/contrib/contrib-form/> `_
61- (CLA), unless their change has no possible intellectual property
62- associated with it (e.g. fixing a spelling mistake in documentation).
60+ Licensing Agreement <https://www.python.org/psf/contrib/contrib-form/> `_
61+ (CLA), unless their change has no possible intellectual property
62+ associated with it (e.g. fixing a spelling mistake in documentation).
6363 To check if a contributor’s CLA has been received, go
6464 to `Check Python CLA <https://check-python-cla.herokuapp.com/ >`_ and
6565 put in their GitHub username. For further questions about the CLA
6666 process, write to contributors@python.org.
6767
68- * **Were ** ``What's New in Python `` **and ** ``Misc/NEWS.d/next `` **updated? **
69- If the change is particularly interesting for end users (e.g. new features,
70- significant improvements, or backwards-incompatible changes), then an
71- entry in the ``What's New in Python `` document (in ``Doc/whatsnew/ ``) should
72- be added as well. Changes that affect only documentation generally do not
68+ * **Were ** ``What's New in Python `` **and ** ``Misc/NEWS.d/next `` **updated? **
69+ If the change is particularly interesting for end users (e.g. new features,
70+ significant improvements, or backwards-incompatible changes), then an
71+ entry in the ``What's New in Python `` document (in ``Doc/whatsnew/ ``) should
72+ be added as well. Changes that affect only documentation generally do not
7373 require a ``NEWS `` entry. (See the following section for more information.)
7474
7575
@@ -161,7 +161,7 @@ Python repositories, so you need to be careful with your workflow:
161161 for maintenance work before it is integrated into the main repository.
162162
163163* **You should not commit directly into the ** ``main `` **branch, or any of the maintenance branches. **
164- You should commit against your own feature branch, and then create a
164+ You should commit against your own feature branch, and then create a
165165 pull request.
166166
167167* **For a small change, you can make a quick edit through the GitHub web UI. **
0 commit comments