diff --git a/core-developers/become-core-developer.rst b/core-developers/become-core-developer.rst index a97cd6bce..a9460b377 100644 --- a/core-developers/become-core-developer.rst +++ b/core-developers/become-core-developer.rst @@ -28,11 +28,12 @@ Gaining commit privileges After a candidate has demonstrated consistent contributions, commit privileges are granted through these steps: -#. A core developer (submitter, usually the mentor) starts a poll in the - `Committers category`_ on the `Python Discourse`_. +#. A core developer (submitter, usually the mentor) starts a poll + (see the :ref:`template ` below) in + the `Committers category`_ on the `Python Discourse`_. - open for 7 days - - results shown upon close + - results shown only upon closing #. If the candidate receives at least two-thirds positive votes when the poll closes (as per :pep:`13`), the submitter `emails the steering council @@ -59,6 +60,44 @@ are granted through these steps: were in the form of a separate post on the already open topic with the poll. +Poll template +============= + +.. _coredev-template: + +While Discourse uses Markdown for formatting, the poll functionality is +custom and somewhat resembles BBcode. There's a creator for polls in the +UI (click the cog icon in the edit box toolbar and choose "Build Poll"). +Here's what it outputs, you can copy and paste it for your poll: + +.. code-block:: bbcode + + [poll type=regular results=on_close public=false chartType=bar groups=committers close=2024-07-15T21:15:00.000Z] + * Promote Basil Fawlty + * Do not promote + [/poll] + +The important options in the poll builder set to get this result: + - Show who voted: **disabled** (``public=false``) + - Limit voting to these groups: **committers** (``groups=committers``) + - Automatically close poll: **in 7 days** (``close=...``) + - Show results: **When poll is closed** (``results=on_close``) + +.. raw:: html + + + .. _Code of Conduct: https://policies.python.org/python.org/code-of-conduct/ .. _Committers category: https://discuss.python.org/c/committers/5 .. _Python Discourse: https://discuss.python.org