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

Commite9e376f

Browse files
committed
Deploying to gh-pages from @9feae2c 🚀
1 parent93985c5 commite9e376f

File tree

559 files changed

+717
-700
lines changed

Some content is hidden

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

559 files changed

+717
-700
lines changed

‎_sources/c-api/init.rst.txt‎

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,6 +1128,12 @@ code, or when embedding the Python interpreter:
11281128
interpreter lock is also shared by all threads, regardless of to which
11291129
interpreter they belong.
11301130
1131+
.. versionchanged:: 3.12
1132+
1133+
:pep:`684` introduced the possibility
1134+
of a :ref:`per-interpreter GIL <per-interpreter-gil>`.
1135+
See :c:func:`Py_NewInterpreterFromConfig`.
1136+
11311137
11321138
.. c:type:: PyThreadState
11331139
@@ -1817,6 +1823,8 @@ function. You can create and destroy them using the following functions:
18171823
haven't been explicitly destroyed at that point.
18181824
18191825
1826+
.. _per-interpreter-gil:
1827+
18201828
A Per-Interpreter GIL
18211829
---------------------
18221830
@@ -1828,7 +1836,7 @@ being blocked by other interpreters or blocking any others. Thus a
18281836
single Python process can truly take advantage of multiple CPU cores
18291837
when running Python code. The isolation also encourages a different
18301838
approach to concurrency than that of just using threads.
1831-
(See :pep:`554`.)
1839+
(See :pep:`554` and :pep:`684`.)
18321840
18331841
Using an isolated interpreter requires vigilance in preserving that
18341842
isolation. That especially means not sharing any objects or mutable

‎_sources/tutorial/datastructures.rst.txt‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ objects:
6262
..method::list.index(x[, start[, end]])
6363
:noindex:
6464

65-
Return zero-based indexin the listof the firstitem whose value is equal to*x*.
65+
Return zero-based index of the firstoccurrence of*x* in the list.
6666
Raises a:exc:`ValueError` if there is no such item.
6767

6868
The optional arguments *start* and *end* are interpreted as in the slice

‎about.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ <h3>瀏覽</h3>
320320
<ahref="https://www.python.org/psf/donations/">Please donate.</a>
321321
<br>
322322
<br>
323-
最後更新於 9月 08, 2025 (07:32 UTC)。
323+
最後更新於 9月 08, 2025 (17:15 UTC)。
324324

325325
<ahref="/bugs.html">Found a bug</a>?
326326

‎bugs.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ <h3>瀏覽</h3>
359359
<ahref="https://www.python.org/psf/donations/">Please donate.</a>
360360
<br>
361361
<br>
362-
最後更新於 9月 08, 2025 (07:32 UTC)。
362+
最後更新於 9月 08, 2025 (17:15 UTC)。
363363

364364
<ahref="/bugs.html">Found a bug</a>?
365365

‎c-api/abstract.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ <h3>瀏覽</h3>
329329
<ahref="https://www.python.org/psf/donations/">Please donate.</a>
330330
<br>
331331
<br>
332-
最後更新於 9月 08, 2025 (07:32 UTC)。
332+
最後更新於 9月 08, 2025 (17:15 UTC)。
333333

334334
<ahref="/bugs.html">Found a bug</a>?
335335

‎c-api/allocation.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ <h3>瀏覽</h3>
346346
<ahref="https://www.python.org/psf/donations/">Please donate.</a>
347347
<br>
348348
<br>
349-
最後更新於 9月 08, 2025 (07:32 UTC)。
349+
最後更新於 9月 08, 2025 (17:15 UTC)。
350350

351351
<ahref="/bugs.html">Found a bug</a>?
352352

‎c-api/apiabiversion.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ <h3>瀏覽</h3>
376376
<ahref="https://www.python.org/psf/donations/">Please donate.</a>
377377
<br>
378378
<br>
379-
最後更新於 9月 08, 2025 (07:32 UTC)。
379+
最後更新於 9月 08, 2025 (17:15 UTC)。
380380

381381
<ahref="/bugs.html">Found a bug</a>?
382382

‎c-api/arg.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ <h3>瀏覽</h3>
931931
<ahref="https://www.python.org/psf/donations/">Please donate.</a>
932932
<br>
933933
<br>
934-
最後更新於 9月 08, 2025 (07:32 UTC)。
934+
最後更新於 9月 08, 2025 (17:15 UTC)。
935935

936936
<ahref="/bugs.html">Found a bug</a>?
937937

‎c-api/bool.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ <h3>瀏覽</h3>
340340
<ahref="https://www.python.org/psf/donations/">Please donate.</a>
341341
<br>
342342
<br>
343-
最後更新於 9月 08, 2025 (07:32 UTC)。
343+
最後更新於 9月 08, 2025 (17:15 UTC)。
344344

345345
<ahref="/bugs.html">Found a bug</a>?
346346

‎c-api/buffer.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ <h3>瀏覽</h3>
10221022
<ahref="https://www.python.org/psf/donations/">Please donate.</a>
10231023
<br>
10241024
<br>
1025-
最後更新於 9月 08, 2025 (07:32 UTC)。
1025+
最後更新於 9月 08, 2025 (17:15 UTC)。
10261026

10271027
<ahref="/bugs.html">Found a bug</a>?
10281028

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp