Triaging Python tickets: Difference between revisions

Undo revision 17690 by 117.239.152.85 (talk)
imported>Jesstess
No edit summary
imported>Semenko
(Undo revision 17690 by 117.239.152.85 (talk))
 
(3 intermediate revisions by 2 users not shown)
Line 1:
Welcome! This page contains instructions for triaging Python tickets, which is something anyone can do and is a great way to get started with contributing to Python.
 
This page focusfocuses on 3 types of triage: verifying bugs, reviewing patches, and reviewing documentation patches.
 
[[File:Python_logo.png|200px]] [[File:Bug.png|200px]]
Line 64:
## If the patch includes tests, verify that the tests fail with the code changes reverted.
# Does [http://docs.python.org/devguide/patch.html#generation make patchcheck] pass?
# Is the patch accompanied by [http://docs.python.org/devguide/runtests.html new tests] that either exercise the bug or the new functionality?
# Do the tests impacted by the patch still pass? (The committer will run the whole test suite, but you can [http://docs.python.org/devguide/runtests.html#runtests run just the relevant tests])
# If functionality was added or changed, is the patch accompanied by new or updated [http://docs.python.org/devguide/documenting.html documentation]?
# Is the patch accompanied by new tests that either exercise the bug or the new functionality?
 
=== Example patch review ===
Anonymous user