forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into pythongh-116402
- Loading branch information
Showing
221 changed files
with
7,989 additions
and
4,832 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: TestsMSI | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
arch: | ||
description: CPU architecture | ||
required: true | ||
type: string | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: installer for ${{ inputs.arch }} | ||
runs-on: windows-latest | ||
timeout-minutes: 60 | ||
env: | ||
IncludeFreethreaded: true | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build CPython installer | ||
run: .\Tools\msi\build.bat --doc -${{ inputs.arch }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
installing/index.rst | ||
howto/index.rst | ||
faq/index.rst | ||
deprecations/index.rst | ||
glossary.rst | ||
|
||
about.rst | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
Pending Removal in Python 3.14 | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
* The ``ma_version_tag`` field in :c:type:`PyDictObject` for extension modules | ||
(:pep:`699`; :gh:`101193`). | ||
|
||
* Creating :c:data:`immutable types <Py_TPFLAGS_IMMUTABLETYPE>` with mutable | ||
bases (:gh:`95388`). | ||
|
||
* Functions to configure Python's initialization, deprecated in Python 3.11: | ||
|
||
* ``PySys_SetArgvEx()``: set :c:member:`PyConfig.argv` instead. | ||
* ``PySys_SetArgv()``: set :c:member:`PyConfig.argv` instead. | ||
* ``Py_SetProgramName()``: set :c:member:`PyConfig.program_name` instead. | ||
* ``Py_SetPythonHome()``: set :c:member:`PyConfig.home` instead. | ||
|
||
The :c:func:`Py_InitializeFromConfig` API should be used with | ||
:c:type:`PyConfig` instead. | ||
|
||
* Global configuration variables: | ||
|
||
* :c:var:`Py_DebugFlag`: use :c:member:`PyConfig.parser_debug` instead. | ||
* :c:var:`Py_VerboseFlag`: use :c:member:`PyConfig.verbose` instead. | ||
* :c:var:`Py_QuietFlag`: use :c:member:`PyConfig.quiet` instead. | ||
* :c:var:`Py_InteractiveFlag`: use :c:member:`PyConfig.interactive` instead. | ||
* :c:var:`Py_InspectFlag`: use :c:member:`PyConfig.inspect` instead. | ||
* :c:var:`Py_OptimizeFlag`: use :c:member:`PyConfig.optimization_level` instead. | ||
* :c:var:`Py_NoSiteFlag`: use :c:member:`PyConfig.site_import` instead. | ||
* :c:var:`Py_BytesWarningFlag`: use :c:member:`PyConfig.bytes_warning` instead. | ||
* :c:var:`Py_FrozenFlag`: use :c:member:`PyConfig.pathconfig_warnings` instead. | ||
* :c:var:`Py_IgnoreEnvironmentFlag`: use :c:member:`PyConfig.use_environment` instead. | ||
* :c:var:`Py_DontWriteBytecodeFlag`: use :c:member:`PyConfig.write_bytecode` instead. | ||
* :c:var:`Py_NoUserSiteDirectory`: use :c:member:`PyConfig.user_site_directory` instead. | ||
* :c:var:`Py_UnbufferedStdioFlag`: use :c:member:`PyConfig.buffered_stdio` instead. | ||
* :c:var:`Py_HashRandomizationFlag`: use :c:member:`PyConfig.use_hash_seed` | ||
and :c:member:`PyConfig.hash_seed` instead. | ||
* :c:var:`Py_IsolatedFlag`: use :c:member:`PyConfig.isolated` instead. | ||
* :c:var:`Py_LegacyWindowsFSEncodingFlag`: use :c:member:`PyPreConfig.legacy_windows_fs_encoding` instead. | ||
* :c:var:`Py_LegacyWindowsStdioFlag`: use :c:member:`PyConfig.legacy_windows_stdio` instead. | ||
* :c:var:`!Py_FileSystemDefaultEncoding`: use :c:member:`PyConfig.filesystem_encoding` instead. | ||
* :c:var:`!Py_HasFileSystemDefaultEncoding`: use :c:member:`PyConfig.filesystem_encoding` instead. | ||
* :c:var:`!Py_FileSystemDefaultEncodeErrors`: use :c:member:`PyConfig.filesystem_errors` instead. | ||
* :c:var:`!Py_UTF8Mode`: use :c:member:`PyPreConfig.utf8_mode` instead. (see :c:func:`Py_PreInitialize`) | ||
|
||
The :c:func:`Py_InitializeFromConfig` API should be used with | ||
:c:type:`PyConfig` instead. |
Oops, something went wrong.