Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit399a898

Browse files
committed
Merge remote-tracking branch 'upstream/main' into cold_code
2 parents5cbffc2 +4e6da50 commit399a898

File tree

735 files changed

+21289
-10372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

735 files changed

+21289
-10372
lines changed

‎.azure-pipelines/ci.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
22
coverage:false
33

4-
trigger:['main', '3.10', '3.9', '3.8', '3.7']
4+
trigger:['main', '3.11', '3.10', '3.9', '3.8', '3.7']
55

66
jobs:
77
-job:Prebuild

‎.azure-pipelines/pr.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
22
coverage:false
33

4-
pr:['main', '3.10', '3.9', '3.8', '3.7']
4+
pr:['main', '3.11', '3.10', '3.9', '3.8', '3.7']
55

66
jobs:
77
-job:Prebuild

‎.gitattributes‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ Doc/data/stable_abi.dat generated
6868
Doc/library/token-list.incgenerated
6969
Include/internal/pycore_ast.hgenerated
7070
Include/internal/pycore_ast_state.hgenerated
71+
Include/internal/pycore_opcode.hgenerated
7172
Include/opcode.hgenerated
7273
Include/token.hgenerated
7374
Lib/keyword.pygenerated

‎.github/CODEOWNERS‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Lib/ast.py @isidentical
9898
/Lib/unittest/test/testmock/*@cjw296
9999

100100
# SQLite 3
101-
**/*sqlite*@berkerpeksag
101+
**/*sqlite*@berkerpeksag@erlend-aasland
102102

103103
# subprocess
104104
/Lib/subprocess.py@gpshead

‎.github/ISSUE_TEMPLATE/feature.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ labels: "type-feature"
1010

1111
**Pitch**
1212

13-
(Explain why this feature orenhacement should be implemented and how it would be used.
13+
(Explain why this feature orenhancement should be implemented and how it would be used.
1414
Add examples, if applicable.)
1515

1616
**Previous discussion**
@@ -25,4 +25,4 @@ labels: "type-feature"
2525

2626
<!--
2727
You can freely edit this text. Remove any lines you believe are unnecessary.
28-
-->
28+
-->

‎.github/dependabot.yml‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ updates:
77
labels:
88
-"skip issue"
99
-"skip news"
10+
ignore:
11+
-dependency-name:"*"
12+
update-types:
13+
-"version-update:semver-minor"
14+
-"version-update:semver-patch"

‎.github/workflows/build.yml‎

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ on:
88
push:
99
branches:
1010
-'main'
11+
-'3.11'
1112
-'3.10'
1213
-'3.9'
1314
-'3.8'
1415
-'3.7'
1516
pull_request:
1617
branches:
1718
-'main'
19+
-'3.11'
1820
-'3.10'
1921
-'3.9'
2022
-'3.8'
@@ -28,7 +30,7 @@ jobs:
2830
run_tests:${{ steps.check.outputs.run_tests }}
2931
run_ssl_tests:${{ steps.check.outputs.run_ssl_tests }}
3032
steps:
31-
-uses:actions/checkout@v2
33+
-uses:actions/checkout@v3
3234
-name:Check for source changes
3335
id:check
3436
run:|
@@ -60,8 +62,8 @@ jobs:
6062
needs:check_source
6163
if:needs.check_source.outputs.run_tests == 'true'
6264
steps:
63-
-uses:actions/checkout@v2
64-
-uses:actions/setup-python@v2
65+
-uses:actions/checkout@v3
66+
-uses:actions/setup-python@v3
6567
-name:Install Dependencies
6668
run:sudo ./.github/workflows/posix-deps-apt.sh
6769
-name:Add ccache to PATH
@@ -114,7 +116,7 @@ jobs:
114116
env:
115117
IncludeUwp:'true'
116118
steps:
117-
-uses:actions/checkout@v2
119+
-uses:actions/checkout@v3
118120
-name:Build CPython
119121
run:.\PCbuild\build.bat -e -d -p Win32
120122
timeout-minutes:30
@@ -131,7 +133,7 @@ jobs:
131133
env:
132134
IncludeUwp:'true'
133135
steps:
134-
-uses:actions/checkout@v2
136+
-uses:actions/checkout@v3
135137
-name:Register MSVC problem matcher
136138
run:echo "::add-matcher::.github/problem-matchers/msvc.json"
137139
-name:Build CPython
@@ -150,7 +152,7 @@ jobs:
150152
env:
151153
PYTHONSTRICTEXTENSIONBUILD:1
152154
steps:
153-
-uses:actions/checkout@v2
155+
-uses:actions/checkout@v3
154156
-name:Prepare homebrew environment variables
155157
run:|
156158
echo "LDFLAGS=-L$(brew --prefix tcl-tk)/lib" >> $GITHUB_ENV
@@ -173,7 +175,7 @@ jobs:
173175
OPENSSL_VER:1.1.1n
174176
PYTHONSTRICTEXTENSIONBUILD:1
175177
steps:
176-
-uses:actions/checkout@v2
178+
-uses:actions/checkout@v3
177179
-name:Register gcc problem matcher
178180
run:echo "::add-matcher::.github/problem-matchers/gcc.json"
179181
-name:Install Dependencies
@@ -185,7 +187,7 @@ jobs:
185187
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
186188
-name:'Restore OpenSSL build'
187189
id:cache-openssl
188-
uses:actions/cache@v2.1.7
190+
uses:actions/cache@v3
189191
with:
190192
path:./multissl/openssl/${{ env.OPENSSL_VER }}
191193
key:${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -236,7 +238,7 @@ jobs:
236238
OPENSSL_DIR:${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
237239
LD_LIBRARY_PATH:${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
238240
steps:
239-
-uses:actions/checkout@v2
241+
-uses:actions/checkout@v3
240242
-name:Register gcc problem matcher
241243
run:echo "::add-matcher::.github/problem-matchers/gcc.json"
242244
-name:Install Dependencies
@@ -248,7 +250,7 @@ jobs:
248250
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
249251
-name:'Restore OpenSSL build'
250252
id:cache-openssl
251-
uses:actions/cache@v2.1.7
253+
uses:actions/cache@v3
252254
with:
253255
path:./multissl/openssl/${{ env.OPENSSL_VER }}
254256
key:${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -280,7 +282,7 @@ jobs:
280282
PYTHONSTRICTEXTENSIONBUILD:1
281283
ASAN_OPTIONS:detect_leaks=0:allocator_may_return_null=1:handle_segv=0
282284
steps:
283-
-uses:actions/checkout@v2
285+
-uses:actions/checkout@v3
284286
-name:Register gcc problem matcher
285287
run:echo "::add-matcher::.github/problem-matchers/gcc.json"
286288
-name:Install Dependencies
@@ -292,7 +294,7 @@ jobs:
292294
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
293295
-name:'Restore OpenSSL build'
294296
id:cache-openssl
295-
uses:actions/cache@v2.1.7
297+
uses:actions/cache@v3
296298
with:
297299
path:./multissl/openssl/${{ env.OPENSSL_VER }}
298300
key:${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}

‎.github/workflows/build_msi.yml‎

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
branches:
77
-'main'
8+
-'3.11'
89
-'3.10'
910
-'3.9'
1011
-'3.8'
@@ -14,6 +15,7 @@ on:
1415
pull_request:
1516
branches:
1617
-'main'
18+
-'3.11'
1719
-'3.10'
1820
-'3.9'
1921
-'3.8'
@@ -26,22 +28,22 @@ jobs:
2628
name:'Windows (x86) Installer'
2729
runs-on:windows-latest
2830
steps:
29-
-uses:actions/checkout@v2
31+
-uses:actions/checkout@v3
3032
-name:Build CPython installer
3133
run:.\Tools\msi\build.bat -x86
3234

3335
build_win_amd64:
3436
name:'Windows (x64) Installer'
3537
runs-on:windows-latest
3638
steps:
37-
-uses:actions/checkout@v2
39+
-uses:actions/checkout@v3
3840
-name:Build CPython installer
3941
run:.\Tools\msi\build.bat -x64
4042

4143
build_win_arm64:
4244
name:'Windows (ARM64) Installer'
4345
runs-on:windows-latest
4446
steps:
45-
-uses:actions/checkout@v2
47+
-uses:actions/checkout@v3
4648
-name:Build CPython installer
4749
run:.\Tools\msi\build.bat -arm64

‎.github/workflows/doc.yml‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
#push:
66
# branches:
77
# - 'main'
8+
# - '3.11'
89
# - '3.10'
910
# - '3.9'
1011
# - '3.8'
@@ -14,6 +15,7 @@ on:
1415
pull_request:
1516
branches:
1617
-'main'
18+
-'3.11'
1719
-'3.10'
1820
-'3.9'
1921
-'3.8'
@@ -27,7 +29,7 @@ jobs:
2729
name:'Docs'
2830
runs-on:ubuntu-latest
2931
steps:
30-
-uses:actions/checkout@v2
32+
-uses:actions/checkout@v3
3133
-name:Register Sphinx problem matcher
3234
run:echo "::add-matcher::.github/problem-matchers/sphinx.json"
3335
-name:'Install Dependencies'
@@ -48,7 +50,7 @@ jobs:
4850
-name:'Build HTML documentation'
4951
run:make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" html
5052
-name:'Upload'
51-
uses:actions/upload-artifact@v2.3.1
53+
uses:actions/upload-artifact@v3
5254
with:
5355
name:doc-html
5456
path:Doc/build/html

‎.github/workflows/new-bugs-announce-notifier.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
notify-new-bugs-announce:
1010
runs-on:ubuntu-latest
1111
steps:
12-
-uses:actions/setup-node@v2
12+
-uses:actions/setup-node@v3
1313
with:
1414
node-version:14
1515
-run:npm install mailgun.js form-data
1616
-name:Send notification
17-
uses:actions/github-script@v5
17+
uses:actions/github-script@v6
1818
env:
1919
MAILGUN_API_KEY:${{ secrets.PSF_MAILGUN_KEY }}
2020
with:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp