8000 Quick Start section: Clarify bpo Issue creation and PR procedure by Mariatta · Pull Request #109 · python/devguide · GitHub
[go: up one dir, main page]

Skip to content

Quick Start section: Clarify bpo Issue creation and PR procedure #109

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,16 @@ patch:
On :ref:`most <mac-python.exe>` Mac OS X systems, replace :file:`./python`
with :file:`./python.exe`. On Windows, use :file:`python.bat`. With Python
2.7, replace ``test`` with ``test.regrtest``.
5. Make a :doc:`pull request <pullrequest>`.
6. Create an issue on the `issue tracker`_ if one does not already exist.

5. Work on an issue from the `issue tracker`_. If an issue does not already
exist, please create it. Trivial issues, like small typo fixes, do not
require any issue to be created.

6. Make a :doc:`pull request <pullrequest>`.
Include ``bpo-NNNN`` in the pull request description, where ``NNNN`` is the
issue number from the `issue tracker`_. For example::

bpo-12345: Fix some bug in spam module


Quick Links
Expand Down
0