[Python-checkins] devguide: #12792: document the "type" field of the tracker.

ezio.melotti python-checkins at python.org
Mon Aug 22 23:46:37 CEST 2011


http://hg.python.org/devguide/rev/aa627513fb23
changeset:   446:aa627513fb23
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Tue Aug 23 00:46:34 2011 +0300
summary:
  #12792: document the "type" field of the tracker.

files:
  triaging.rst |  24 ++++++++++++++++++++----
  1 files changed, 20 insertions(+), 4 deletions(-)


diff --git a/triaging.rst b/triaging.rst
--- a/triaging.rst
+++ b/triaging.rst
@@ -19,10 +19,26 @@
 Type
 ''''
 Describes the type of issue.  If something does not fit within any
-specific type then simply do not set it.  *"crash"* is for hard crashes of
-the Python interpreter -- possibly with a core dump or a Windows error box --
-and not erroneous exits because of an unhandled exception (the latter fall under
-the *"behavior"* category).
+specific type then simply do not set it.
+
+behavior
+    Wrong or unexpected behavior, result, or exception.  This includes most of
+    the bugs.
+crash
+    Hard crashes of the Python interpreter -- possibly with a core
+    dump or a Windows error box.
+compile error
+    Errors reported by the compiler while compiling Python.
+resource usage
+    Situations where too many resources (e.g. memory) are used.
+security
+    Issues that might have security implications.  If you think the issue
+    should not be made public, please report it to security at python.org instead.
+performance
+    Situations where too much time is necessary to complete the task.
+feature requests
+    Issues that propose the addition of new functionality, such as new
+    functions, classes, modules, or even new arguments for existing functions.
 
 Stage
 '''''

-- 
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list