10000 GitHub - python/devguide at 2305cbe3cd655ba177ddef4e2902e59bac7de1a6
[go: up one dir, main page]

Skip to content

python/devguide

Repository files navigation

The CPython Developer's Guide

Documentation Status Python Discourse chat Code style is black

This guide covers how to contribute to CPython. It is known by the nickname of "the dev 8000 guide" by the Python core developers.

The official home of this guide is https://devguide.python.org.

Compilation

For the compilation of the devguide, you need to use a version of Python which supports the venv module, because the make html command will create a virtual environment and will install the Sphinx package:

make html
0