Python Developer’s Guide

This guide is a comprehensive resource for contributing to Python – for both new and experienced contributors. It is maintained by the same community that maintains Python. We welcome your contributions to Python!

Quick Start

Here are the basic steps needed to get set up and contribute a patch:

  1. Get the source code:

    hg clone https://hg.python.org/cpython
    
  2. Build Python. On all platforms, install build dependencies (such as compilers). On UNIX (including Mac OS X):

    ./configure --with-pydebug && make -j2
    

    On Windows:

    PCbuild\build.bat -e -d
    

    If the build outputs warnings or errors, Build dependencies provides detail on standard library extensions that depend on installing third-party libraries for some operating systems.

  3. Run the tests:

    ./python -m test -j3
    

    On most Mac OS X systems, replace ./python with ./python.exe. On Windows, use python.bat or check the Windows instructions. With Python 2.7, replace test with test.regrtest.

  4. Make the patch.

  5. Submit it to the issue tracker.

Contributing

We encourage everyone to contribute to Python and that’s why we have put up this developer’s guide. If you still have questions after reviewing the material in this guide, then the Python Mentors group is available to help guide new contributors through the process. The Developer FAQ is another useful source of information.

Guide for contributing to Python:

It is recommended that the above documents be read in the order listed. You can stop where you feel comfortable and begin contributing immediately without reading and understanding these documents all at once. If you do choose to skip around within the documentation, be aware that it is written assuming preceding documentation has been read so you may find it necessary to backtrack to fill in missing concepts and terminology.

Proposing changes to Python itself

Improving Python’s code, documentation and tests are ongoing tasks that are never going to be “finished”, as Python operates as part of an ever-evolving system of technology. An even more challenging ongoing task than these necessary maintenance activities is finding ways to make Python, in the form of the standard library and the language definition, an even better tool in a developer’s toolkit.

While these kinds of change are much rarer than those described above, they do happen and that process is also described as part of this guide:

Also refer to Where should I suggest new features and language changes? in the FAQ.

Other Interpreter Implementations

This guide is specifically for contributing to the Python reference interpreter, also known as CPython (while most of the standard library is written in Python, the interpreter core is written in C and integrates most easily with the C and C++ ecosystems).

There are other Python implementations, each with a different focus. Like CPython, they always have more things they would like to do than they have developers to work on them. Some major example that may be of interest are:

  • PyPy: A Python interpreter focused on high speed (JIT-compiled) operation on major platforms
  • Jython: A Python interpreter focused on good integration with the Java Virtual Machine (JVM) environment
  • IronPython: A Python interpreter focused on good integration with the Common Language Runtime (CLR) provided by .NET and Mono
  • Stackless: A Python interpreter focused on providing lightweight microthreads while remaining largely compatible with CPython specific extension modules

Key Resources

Additional Resources

Full Table of Contents