Link Hub Manager

📰 Newest Python PEPs

Newest Python Enhancement Proposals (PEPs): Information on new language features and some meta-information like release procedure and schedules.

📊 Rythme de publication (100 derniers articles)

📈 2,2 articles / mois — soit ~1 article tous les 14,1 jours · dernier le 05/08/2026 00:00

62026-03 : 1 article103/262026-04 : 1 article104/2605/262026-06 : 1 article106/262026-07 : 6 articles607/262026-08 : 1 article108/26

10 articles datés · regroupés par mois.

⭐ Qualité du flux — note pondérée selon le standard podcast ouvert (PSP-1)
100/100 A

✅ 6 bons points sur 6 critères évalués.

🔒 Le détail du calcul (note par critère : intégrité technique, découvrabilité, conformité podcast ouvert…) est réservé aux abonnés — connectez-vous.

🗒️ Articles (10 affichés)
📄 10
📄 Article PEP 844: ``public`` and ``private`` builtins
05/08/2026 00:00

This PEP proposes adding two new builtin functions, public() and private(), which document the public interface of a module by keeping its __all__ synchronized with the names actually defined to be public in that module. Both are used as decorators (@public and @private) on class and function defini…

Lire l'article →
📄 Article PEP 842: Module Exports
25/07/2026 00:00

This PEP proposes an export statement that modules can use to express intent about the visibility of variables from outside the module.

Lire l'article →
📄 Article PEP 841: Adding Frozen Syntax to Optimize Immutable Types
20/07/2026 00:00

This PEP proposes frozen display syntax: f{1, 2, 3} evaluates to a frozenset, and f{'a': 1} evaluates to a frozendict. Because immutability is guaranteed by the syntax itself rather than inferred from usage, the compiler can treat frozen displays as first-class citizens of its optimization pipeline:…

Lire l'article →
📄 Article PEP 838: Adding python-version to pyvenv.cfg
15/07/2026 00:00

This PEP proposes adding a python-version field to pyvenv.cfg which records the Python interpreter used by a virtual environment. It records only the major and minor version to be resilient to patch version updates.

Lire l'article →
📄 Article PEP 829: Package Startup Configuration Files
31/03/2026 00:00

This PEP changes the way packages influence Python’s startup process. Previously controlled through legacy .pth files parsed and executed by the site.py file during interpreter startup, such files are used to extend sys.path and execute package initialization code before control is passed to the fir…

Lire l'article →