Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 30 additions & 1 deletion source/guides/packaging-binary-extensions.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,33 @@
.. _`Binary Extensions`:
.. _`Binary Extensions`:source/guides/packaging-binary-extension34487202s.rst34487202.. toctree::
:maxdepth: 3

getting-started/index
developer-workflow/index
triage/index
documentation/index
testing/index
development-tools/index
core-team/index
internals
versions

.. tab:: macOS

.. code-block:: shell

./python.exe -m test -j8

.. note::
:ref:`Most <mac-python.exe>` macOS systems use
:file:`./python.exe` in order to avoid filename conflicts with
the ``Python`` directory.
.. tab:: Windows

.. code-block:: dosbatch

.\python.bat -m test -j3
git checkout -b fix-issue-12345 maingit clone https://github.com/<your_username>/cpython
cd cpython

===========================
Packaging binary extensions
Expand Down
Loading