一键重装系统工具 | U盘启动盘制作工具 | 误删文件恢复软件 | 硬盘数据抢救专家 | 电脑蓝屏修复助手 | C盘空间清理神器 | 电脑驱动离线安装工具 | 微信聊天记录恢复工具 | 照片误格式化恢复 | 电脑密码破解清除工具 | 系统崩溃紧急救援盘 | 电脑加速优化大师 | 电脑开不了机怎么重装系统 | 回收站清空了怎么恢复 | 硬盘分区丢失数据恢复 | 电脑卡顿重装系统有用吗 | U盘插入提示格式化数据恢复 | 电脑中毒文件被隐藏恢复 | 忘记电脑开机密码怎么办 | 新硬盘分区对齐工具 | 旧电脑装Win10流畅工具 | SD卡照片删除恢复免费版 | 移动硬盘打不开提示损坏修复 | 电脑无故重启系统修复工具 | 电脑小白一键重装神器 | 程序员电脑环境配置助手 | 设计师电脑字体/素材恢复工具 | 网吧网管系统维护工具箱 | 财务人员电脑发票备份恢复 | 学生党免费电脑系统安装包 | 电脑维修师傅必备工具盘 | 游戏玩家电脑性能优化助手 | 办公白领误删文档恢复软件 | 自媒体视频素材恢复工具 | 网课录制视频损坏修复工具 | 最好的U盘PE系统排名 | 数据恢复软件哪个最强 | 免费电脑助手与收费版区别 | 国产装机工具哪款无广告 | 离线版驱动助手推荐 | 轻量级电脑优化工具对比 | 支持NVMe驱动的PE工具 | 带网络功能的应急启动盘 | 2026最新版万能装机工具 | 支持Win11 24H2的PE工具 | 最新免激活系统重装工具 | 2026数据恢复软件破解版合集 | 纯净无捆绑装机助手V3.0 | 支持苹果M芯片的电脑助手 | 秋季更新版系统维护工具箱 | 电脑系统崩了怎么用U盘把重要资料拷贝出来 | 重装系统前哪些文件夹必须备份 | 固态硬盘误格式化还能恢复数据吗 | 如何制作一个既带PE又能存数据的双分区U盘 | 电脑总是弹窗广告用什么助手彻底拦截 后台管理
📢 欢迎访问系统之家!所有资源均经过安全检测。

Python Developer’s Guide

发布时间:2026-09-20 | 浏览:3
📥 下载地址(文章开头)
装机神器,可以安装一切系统。
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! Start with the area that best matches what you want to do. If you still have questions after reviewing the material in this guide, then the Core Python Mentorship group is available to help guide new contributors through the process. Helping with documentation Helping with documentation Getting started Getting started reStructuredText primer reStructuredText primer Helping with the Developer’s Guide Helping with the Developer’s Guide Guidelines for using AI tools Guidelines for using AI tools Setup and building Setup and building Where to get help Where to get help Lifecycle of a pull request Lifecycle of a pull request Running and writing tests Running and writing tests Fixing “easy” issues (and beyond) Fixing “easy” issues (and beyond) Following Python’s development Following Python’s development Git bootcamp and cheat sheet Git bootcamp and cheat sheet Development cycle Development cycle Guidelines for using AI tools Guidelines for using AI tools Using the issue tracker Using the issue tracker Triaging an issue Triaging an issue Helping triage issues Helping triage issues We recommend that sections of this guide be read as needed. You can stop where you feel comfortable and begin contributing immediately without reading and understanding everything. If you do choose to skip around within the guide, be aware that some sections build on each other, so you may need to backtrack for missing concepts or terminology. For broader open-source contribution advice, a number of individuals from the Python community have contributed to a series of excellent guides at Open Source Guides . For example, How to Contribute to Open Source . You don’t have to be a compiler engineer to work on Python – Savannah Ostrowski Quick reference ¶ The quick reference documentation has been moved to serve as a cheat-sheet and overview in Getting started . Go to the new quick reference . 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: Adding to the stdlib Adding to the stdlib Changing Python Changing Python Key resources ¶ Coding style guides PEP 7 (Style Guide for C Code) PEP 8 (Style Guide for Python Code) Coding style guides PEP 7 (Style Guide for C Code) PEP 7 (Style Guide for C Code) PEP 8 (Style Guide for Python Code) PEP 8 (Style Guide for Python Code) Issue tracker Experts index Buildbot status Buildbot status Source code Browse online Download a snapshot of the main branch Download a snapshot of the main branch Download a snapshot of the main branch PEPs (Python Enhancement Proposals) PEPs (Python Enhancement Proposals) The Python Discourse The Python Discourse Where to get help Where to get help Git bootcamp and cheat sheet Git bootcamp and cheat sheet Additional resources ¶ Anyone can clone the sources for this guide. See Helping with the Developer’s Guide . Anyone can clone the sources for this guide. See Helping with the Developer’s Guide . Help with … CPython’s internals Changing CPython’s grammar CPython’s internals CPython’s internals Changing CPython’s grammar Changing CPython’s grammar Tool support GDB support Dynamic analysis with Clang Various tools with configuration files as found in the Misc/ directory Dynamic analysis with Clang Dynamic analysis with Clang Various tools with configuration files as found in the Misc/ directory Various tools with configuration files as found in the Misc/ directory python.org maintenance python.org maintenance Code of conduct ¶ Please note that all interactions on Python Software Foundation -supported infrastructure is covered by the PSF Code of Conduct , which includes all infrastructure used in the development of Python itself (for example, Discourse, issue trackers, GitHub, and so on). In general this means everyone is expected to be open, considerate, and respectful of others no matter what their position is within the project. 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 examples that may be of interest are: PyPy : A Python interpreter focused on high speed (JIT-compiled) operation on major platforms. PyPy : A Python interpreter focused on high speed (JIT-compiled) operation on major platforms. GraalPy : A Python interpreter which has first-class support for embedding in Java, built on GraalVM. GraalPy : A Python interpreter which has first-class support for embedding in Java, built on GraalVM. Jython : A Python interpreter focused on good integration with the Java Virtual Machine (JVM) environment. 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. IronPython : A Python interpreter focused on good integration with the Common Language Runtime (CLR) provided by .NET and Mono. MicroPython : A tiny Python interpreter with small subset of the Python standard library that is optimised to run on microcontrollers and in constrained environments. MicroPython : A tiny Python interpreter with small subset of the Python standard library that is optimised to run on microcontrollers and in constrained environments. CircuitPython : A fork of MicroPython designed to simplify experimenting and learning to code on low-cost microcontroller boards. CircuitPython : A fork of MicroPython designed to simplify experimenting and learning to code on low-cost microcontroller boards. Full table of contents ¶ Getting started Quick reference Set up Git Build Python Run the tests Create issues and pull requests Setup and building Install Git Get the source code Compile and build Install dependencies Regenerate configure Regenerate the ABI dump Troubleshoot the build Editors and tools Directory structure Using a container Fixing “easy” issues (and beyond) Git bootcamp and cheat sheet Forking CPython GitHub repository Cloning a forked CPython repository Configure the remotes Listing the remote repositories Setting up your name and email address Enabling autocrlf on Windows Creating and switching branches Deleting branches Renaming branch Staging and committing files Reverting changes Stashing changes Comparing changes Pushing changes Creating a pull request Linking to issues and pull requests Updating your CPython fork Applying a patch to Git Checking out others’ pull requests Accepting and merging a pull request Cancelling an automatic merge Backporting merged changes Editing a pull request prior to merging GitHub CLI Git worktree Lifecycle of a pull request Introduction Step-by-step guide Making good PRs Updating NEWS and What’s New in Python Copyrights Typo fixes patchcheck Making good commits Licensing Submitting Converting an existing patch from b.p.o to GitHub Reviewing Keeping continuous integration green Update branch button Committing/rejecting Crediting Where to get help Discourse Ask #python-dev Core mentorship File a bug Guidelines for using AI tools Considerations for success Acceptable uses Unacceptable uses Quick reference Set up Git Build Python Run the tests Create issues and pull requests Create issues and pull requests Setup and building Install Git Get the source code Compile and build Install dependencies Regenerate configure Regenerate the ABI dump Troubleshoot the build Editors and tools Directory structure Using a container Get the source code Compile and build Install dependencies Regenerate configure Regenerate the ABI dump Troubleshoot the build Editors and tools Directory structure Using a container Fixing “easy” issues (and beyond) Git bootcamp and cheat sheet Forking CPython GitHub repository Cloning a forked CPython repository Configure the remotes Listing the remote repositories Setting up your name and email address Enabling autocrlf on Windows Creating and switching branches Deleting branches Renaming branch Staging and committing files Reverting changes Stashing changes Comparing changes Pushing changes Creating a pull request Linking to issues and pull requests Updating your CPython fork Applying a patch to Git Checking out others’ pull requests Accepting and merging a pull request Cancelling an automatic merge Backporting merged changes Editing a pull request prior to merging GitHub CLI Git worktree Forking CPython GitHub repository Cloning a forked CPython repository Configure the remotes Listing the remote repositories Setting up your name and email address Enabling autocrlf on Windows Creating and switching branches Deleting branches Renaming branch Staging and committing files Reverting changes Stashing changes Comparing changes Pushing changes Creating a pull request Linking to issues and pull requests Updating your CPython fork Applying a patch to Git Checking out others’ pull requests Accepting and merging a pull request Cancelling an automatic merge Backporting merged changes Editing a pull request prior to merging Lifecycle of a pull request Introduction Step-by-step guide Making good PRs Updating NEWS and What’s New in Python Copyrights Typo fixes patchcheck Making good commits Licensing Submitting Converting an existing patch from b.p.o to GitHub Reviewing Keeping continuous integration green Update branch button Committing/rejecting Crediting Step-by-step guide Making good PRs Updating NEWS and What’s New in Python Making good commits Converting an existing patch from b.p.o to GitHub Keeping continuous integration green
📥 下载地址(文章中间)
装机神器,可以安装一切系统。
Update branch button Committing/rejecting Where to get help Discourse Ask #python-dev Core mentorship File a bug Ask #python-dev Core mentorship Guidelines for using AI tools Considerations for success Acceptable uses Unacceptable uses Considerations for success Acceptable uses Unacceptable uses Development workflow Following Python’s development Standards of behaviour in these communication channels Communicating across cultures and languages Mailing lists Discourse (discuss.python.org web forum) Discord (private chat server) IRC Blogs Setting expectations for open-source participation Additional repositories Changing Python Considerations Suggesting new features and language changes PEP process Development cycle Branches Stages Repository administration Governance Adding to the stdlib Adding to a pre-existing module Adding a new module Adding a new environment variable Standard library extension modules Classifying extension modules Adding an extension module to CPython Changing Python’s C API The internal API Public C API Unstable C API Limited API Changing CPython’s grammar Porting and platform support Ports and contacts Porting to a new platform Following Python’s development Standards of behaviour in these communication channels Communicating across cultures and languages Mailing lists Discourse (discuss.python.org web forum) Discord (private chat server) IRC Blogs Setting expectations for open-source participation Additional repositories Standards of behaviour in these communication channels Communicating across cultures and languages Discourse (discuss.python.org web forum) Discord (private chat server) Setting expectations for open-source participation Additional repositories Changing Python Considerations Suggesting new features and language changes PEP process Suggesting new features and language changes Development cycle Branches Stages Repository administration Governance Repository administration Adding to the stdlib Adding to a pre-existing module Adding a new module Adding a new environment variable Adding to a pre-existing module Adding a new module Adding a new environment variable Standard library extension modules Classifying extension modules Adding an extension module to CPython Classifying extension modules Adding an extension module to CPython Changing Python’s C API The internal API Public C API Unstable C API Limited API The internal API Changing CPython’s grammar Porting and platform support Ports and contacts Porting to a new platform Ports and contacts Porting to a new platform Issues and triaging Using the issue tracker Reporting an issue Working with issues Disagreement with a resolution Triaging an issue Checklist for triaging Issue fields Helping triage issues GitHub labels Type labels Component labels OS labels Topic labels Version labels Other labels Labels specific to PRs Triage Team Becoming a member of the Python triage team Using the issue tracker Reporting an issue Working with issues Disagreement with a resolution Reporting an issue Working with issues Disagreement with a resolution Triaging an issue Checklist for triaging Issue fields Helping triage issues Checklist for triaging Helping triage issues GitHub labels Type labels Component labels OS labels Topic labels Version labels Other labels Labels specific to PRs Component labels Labels specific to PRs Triage Team Becoming a member of the Python triage team Becoming a member of the Python triage team Documentation Getting started Introduction Building the documentation Helping with documentation Python documentation Helping with documentation issues Translating Proofreading Style guide Footnotes Capitalization Use simple language Charged terminology to avoid Specific words Type names Diátaxis Links Affirmative tone Author attribution Pronunciation of dunder names Economy of expression Security considerations (and other concerns) Code examples Code equivalents Audience Function signatures reStructuredText markup Quick reference reStructuredText primer Typographic conventions Additional markup constructs Translations Translating Coordinating Helping with the Developer’s Guide Developer’s Guide workflow Getting started Introduction Building the documentation Building the documentation Helping with documentation Python documentation Helping with documentation issues Translating Proofreading Python documentation Helping with documentation issues Style guide Footnotes Capitalization Use simple language Charged terminology to avoid Specific words Type names Diátaxis Links Affirmative tone Author attribution Pronunciation of dunder names Economy of expression Security considerations (and other concerns) Code examples Code equivalents Audience Function signatures Use simple language Charged terminology to avoid Affirmative tone Author attribution Pronunciation of dunder names Economy of expression Security considerations (and other concerns) Code equivalents Function signatures reStructuredText markup Quick reference reStructuredText primer Typographic conventions Additional markup constructs Quick reference reStructuredText primer Typographic conventions Additional markup constructs Translations Translating Coordinating Helping with the Developer’s Guide Developer’s Guide workflow Developer’s Guide workflow Testing and buildbots Running and writing tests Running Writing Benchmarks Silence warnings from the test suite Increase test coverage Common gotchas Measuring coverage Filing the issue Measuring coverage of C code with gcov and lcov OSS-Fuzz for CPython Adding new targets Working with buildbots In case of trouble Buildbot failures on pull requests Triggering on pull requests Checking results of automatic builds Stability Flags-dependent failures Ordering-dependent failures Transient failures New buildbot workers Preparing for buildbot worker setup Setting up the buildbot worker Buildbot worker operation Required ports Required resources Security considerations Running and writing tests Running Writing Benchmarks Silence warnings from the test suite Increase test coverage Common gotchas Measuring coverage Filing the issue Measuring coverage of C code with gcov and lcov Measuring coverage Filing the issue Measuring coverage of C code with gcov and lcov OSS-Fuzz for CPython Adding new targets Adding new targets Working with buildbots In case of trouble Buildbot failures on pull requests Triggering on pull requests Checking results of automatic builds Stability Flags-dependent failures Ordering-dependent failures Transient failures In case of trouble Buildbot failures on pull requests Triggering on pull requests Checking results of automatic builds Flags-dependent failures Ordering-dependent failures Transient failures New buildbot workers Preparing for buildbot worker setup Setting up the buildbot worker Buildbot worker operation Required ports Required resources Security considerations Preparing for buildbot worker setup Setting up the buildbot worker Buildbot worker operation Required resources Security considerations Development tools Argument Clinic Background Reference GDB support Page moved CPython tips Dynamic analysis with Clang What is Clang? What are sanitizers? Clang/LLVM setup Python build setup Analyzing the output Tools for tracking compiler warnings What to do if a warning check fails GitHub CI Updating the warning ignore file Argument Clinic Background Reference GDB support Page moved CPython tips Dynamic analysis with Clang What is Clang? What are sanitizers? Clang/LLVM setup Python build setup Analyzing the output What are sanitizers? Clang/LLVM setup Python build setup Analyzing the output Tools for tracking compiler warnings What to do if a warning check fails GitHub CI Updating the warning ignore file What to do if a warning check fails GitHub CI Updating the warning ignore file Core team Responsibilities Communication channels and bug notifications Sign a contributor agreement Pull request merging Expectations Accepting pull requests Assessing a pull request Merging the pull request Working with Git Experts index Stdlib Tools Platforms Miscellaneous Experts emeritus Documentation translations Team log Procedure for granting or dropping access Motivations and affiliations Published entries Goals of this page Limitations on scope How to join the core team What it takes Gaining commit privileges Poll template Memorialization Rationale The process Responsibilities Communication channels and bug notifications Sign a contributor agreement Pull request merging Expectations Communication channels and bug notifications Sign a contributor agreement Pull request merging Accepting pull requests Assessing a pull request Merging the pull request Working with Git Assessing a pull request Merging the pull request Working with Git Experts index Stdlib Tools Platforms Miscellaneous Experts emeritus Documentation translations Experts emeritus Documentation translations Team log Procedure for granting or dropping access Procedure for granting or dropping access Motivations and affiliations Published entries Goals of this page Limitations on scope Published entries Goals of this page Limitations on scope How to join the core team What it takes Gaining commit privileges Poll template Gaining commit privileges Memorialization Rationale The process Security Security policy What types of bugs are vulnerabilities? What versions of Python accept reports? What to include and how to structure a vulnerability report? How to submit a vulnerability report? When are security fixes released or backported? Code of conduct CVE Numbering Authority (CNA) Python Security Response Team (PSRT) Members Triaging a vulnerability report Remediating a vulnerability report The PSRT bot Handling code signing certificate reports Template responses Members emeritus Software Bill-of-Materials (SBOM) Updating a dependency Adding a new dependency Removing a dependency Security policy What types of bugs are vulnerabilities? What versions of Python accept reports? What to include and how to structure a vulnerability report? How to submit a vulnerability report? When are security fixes released or backported? Code of conduct CVE Numbering Authority (CNA) What types of bugs are vulnerabilities? What versions of Python accept reports? What to include and how to structure a vulnerability report? How to submit a vulnerability report? When are security fixes released or backported? Code of conduct CVE Numbering Authority (CNA) Python Security Response Team (PSRT) Members Triaging a vulnerability report Remediating a vulnerability report The PSRT bot Handling code signing certificate reports Template responses Members emeritus Triaging a vulnerability report Remediating a vulnerability report Handling code signing certificate reports Template responses Members emeritus Software Bill-of-Materials (SBOM) Updating a dependency Adding a new dependency Removing a dependency Updating a dependency Adding a new dependency Removing a dependency CPython’s internals Status of Python versions Supported versions Unsupported versions Full chart Status key Supported versions Unsupported versions
📥 下载地址(文章结尾)
装机神器,可以安装一切系统。