blob: 4db2433a1d6685430c06dc49b6db828a156fa99e [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001.. _reporting-bugs:
2
3************************
4Reporting Bugs in Python
5************************
6
7Python is a mature programming language which has established a reputation for
8stability. In order to maintain this reputation, the developers would like to
9know of any deficiencies you find in Python.
10
Benjamin Petersondcf48912008-08-24 21:55:03 +000011Bug reports should be submitted via the Python Bug Tracker
Georg Brandl8ec7f652007-08-15 14:28:01 +000012(http://bugs.python.org/). The bug tracker offers a Web form which allows
13pertinent information to be entered and submitted to the developers.
14
15The first step in filing a report is to determine whether the problem has
16already been reported. The advantage in doing so, aside from saving the
17developers time, is that you learn what has been done to fix it; it may be that
18the problem has already been fixed for the next release, or additional
19information is needed (in which case you are welcome to provide it if you can!).
20To do this, search the bug database using the search box on the top of the page.
21
Georg Brandlc03cd4c2009-05-16 11:24:41 +000022In the case of documentation bugs, look at the most recent development docs at
23http://docs.python.org/dev to see if the bug has been fixed.
24
Georg Brandl8ec7f652007-08-15 14:28:01 +000025If the problem you're reporting is not already in the bug tracker, go back to
Georg Brandl37212ed2010-02-27 14:58:08 +000026the Python Bug Tracker and log in. If you don't already have a tracker account,
27select the "Register" link or, if you use OpenID, one of the OpenID provider
28logos in the sidebar. It is not possible to submit a bug report anonymously.
Georg Brandl8ec7f652007-08-15 14:28:01 +000029
30Being now logged in, you can submit a bug. Select the "Create New" link in the
31sidebar to open the bug reporting form.
32
33The submission form has a number of fields. For the "Title" field, enter a
34*very* short description of the problem; less than ten words is good. In the
35"Type" field, select the type of your problem; also select the "Component" and
36"Versions" to which the bug relates.
37
Benjamin Peterson83ea2a92008-05-04 19:10:02 +000038In the "Comment" field, describe the problem in detail, including what you
Georg Brandl8ec7f652007-08-15 14:28:01 +000039expected to happen and what did happen. Be sure to include whether any
40extension modules were involved, and what hardware and software platform you
41were using (including version information as appropriate).
42
43Each bug report will be assigned to a developer who will determine what needs to
44be done to correct the problem. You will receive an update each time action is
Georg Brandl37212ed2010-02-27 14:58:08 +000045taken on the bug. See http://www.python.org/dev/workflow/ for a detailed
46description of the issue workflow.
Georg Brandl8ec7f652007-08-15 14:28:01 +000047
48
49.. seealso::
50
Georg Brandlfa13b5e2008-01-21 18:41:24 +000051 `How to Report Bugs Effectively <http://www.chiark.greenend.org.uk/~sgtatham/bugs.html>`_
Georg Brandl8ec7f652007-08-15 14:28:01 +000052 Article which goes into some detail about how to create a useful bug report.
53 This describes what kind of information is useful and why it is useful.
54
Georg Brandl02677812008-03-15 00:20:19 +000055 `Bug Writing Guidelines <http://developer.mozilla.org/en/docs/Bug_writing_guidelines>`_
Georg Brandl8ec7f652007-08-15 14:28:01 +000056 Information about writing a good bug report. Some of this is specific to the
57 Mozilla project, but describes general good practices.
58