• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1name: Bug report
2description: Submit a bug report
3labels: ["type-bug"]
4body:
5  - type: markdown
6    attributes:
7      value: |
8        **New to Python?**
9
10        For help or advice on using Python, try one of the following options instead of opening a GitHub issue:
11
12          - Asking on [Discourse](https://discuss.python.org/c/users/7) or [Stack Overflow](https://stackoverflow.com)
13          - Reading the [Python tutorial](https://docs.python.org/3/tutorial/)
14          - Emailing [python-list](https://mail.python.org/mailman/listinfo/python-list)
15
16        Make sure to also search the [CPython issue tracker](https://github.com/python/cpython/issues?q=is%3Aissue+sort%3Acreated-desc) to check that the bug has not already been reported.
17  - type: textarea
18    attributes:
19      label: "Bug description:"
20      description: >
21        Give a clear and concise description of what happened.
22        Include a [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) if possible.
23        [Copy and paste code where possible rather than using screenshots](https://meta.stackoverflow.com/a/285557/13990016),
24        and put any code blocks inside triple backticks.
25
26      value: |
27        ```python
28        # Add a code block here, if required
29        ```
30    validations:
31      required: true
32  - type: dropdown
33    attributes:
34      label: "CPython versions tested on:"
35      multiple: true
36      options:
37        - "3.8"
38        - "3.9"
39        - "3.10"
40        - "3.11"
41        - "3.12"
42        - "3.13"
43        - "CPython main branch"
44    validations:
45      required: true
46  - type: dropdown
47    attributes:
48      label: "Operating systems tested on:"
49      multiple: true
50      options:
51        - Linux
52        - macOS
53        - Windows
54        - Other
55    validations:
56      required: false
57