GitXplorerGitXplorer
p

peps

public
4495 stars
1557 forks
52 issues

Commits

List of commits on branch main.
Verified
e015e9b549a2c38074375b21792d8541acbb9c49

PEP 751: update the post history (#4205)

bbrettcannon committed 2 days ago
Verified
daaf5e5546f64213598b8be449c5bda28e023fe4

PEP 751: orient towards a requirements file lock file replacement (#4203)

bbrettcannon committed 2 days ago
Verified
2fa67db5073f59d2223bb432cbec31c76d7f8cec

PEP 770: Remove MUST for JSON+UTF-8, fix typo (#4201)

ssethmlarson committed 3 days ago
Verified
f86a07f7dd63800862ba9034bbcdcb192336e961

PEP 745: 3.14.0a4 was released on 2024-01-14 (#4202)

hhugovk committed 3 days ago
Verified
85f165ea3aea78a5501d54fec1d0c298f234edf1

PEP 747: Minor fixes in code examples (#4193)

ssharkdp committed 8 days ago
Verified
c67f3b539273b2db3370a58f84b401d4e8f40197

PEP 768: Add some clarifications for buffer size (#4194)

ppablogsal committed 8 days ago

README

The README file for this repository.

Python Enhancement Proposals

.. image:: https://github.com/python/peps/actions/workflows/render.yml/badge.svg :target: https://github.com/python/peps/actions

The PEPs in this repo are published automatically on the web at https://peps.python.org/. To learn more about the purpose of PEPs and how to go about writing one, please start reading at :pep:1. Note that the PEP Index (:pep:0) is automatically generated based on the metadata headers in other PEPs.

Canonical links

The canonical form of PEP links are zero-padded, such as https://peps.python.org/pep-0008/.

Shortcut redirects are also available. For example, https://peps.python.org/8 redirects to the canonical link.

Contributing to PEPs

See the Contributing Guidelines <./CONTRIBUTING.rst>_.

Checking PEP formatting and rendering

Please don't commit changes with reStructuredText syntax errors that cause PEP generation to fail, or result in major rendering defects relative to what you intend.

Browse the "Read the Docs" preview

For every PR, we automatically create a preview of the rendered PEPs using Read the Docs <https://about.readthedocs.com>_. You can find it in the merge box at the bottom of the PR page:

  1. Click "Show all checks" to expand the checks section
  2. Find the line for docs/readthedocs.org:pep-previews
  3. Click on "Details" to the right

Render PEPs locally

See the build documentation <./docs/build.rst>__ for full instructions on how to render PEPs locally. In summary, run the following in a fresh, activated virtual environment:

.. code-block:: bash

# Install requirements
python -m pip install -U -r requirements.txt

# Build the PEPs
make html

# Or, if you don't have 'make':
python build.py

The output HTML is found under the build directory.

Check and lint PEPs

You can check for and fix common linting and spelling issues, either on-demand or automatically as you commit, with our pre-commit suite. See the Contributing Guide <./CONTRIBUTING.rst>_ for details.