Skip to content

Commit 3d4accb

Browse files
committed
Deploying to gh-pages from @ bcf2bc8 🚀
1 parent 8661948 commit 3d4accb

File tree

530 files changed

+657
-750
lines changed

Some content is hidden

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

530 files changed

+657
-750
lines changed

_sources/library/asyncio-eventloop.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1791,7 +1791,7 @@ By default asyncio is configured to use :class:`EventLoop`.
17911791
.. seealso::
17921792

17931793
`MSDN documentation on I/O Completion Ports
1794-
<https://docs.microsoft.com/en-ca/windows/desktop/FileIO/i-o-completion-ports>`_.
1794+
<https://learn.microsoft.com/windows/win32/fileio/i-o-completion-ports>`_.
17951795

17961796
.. class:: EventLoop
17971797

_sources/library/time.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ Functions
390390
threads ready to run, the function returns immediately, and the thread
391391
continues execution. On Windows 8.1 and newer the implementation uses
392392
a `high-resolution timer
393-
<https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/high-resolution-timers>`_
393+
<https://learn.microsoft.com/windows-hardware/drivers/kernel/high-resolution-timers>`_
394394
which provides resolution of 100 nanoseconds. If *secs* is zero, ``Sleep(0)`` is used.
395395

396396
Unix implementation:

_sources/reference/compound_stmts.rst.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -534,18 +534,15 @@ is semantically equivalent to::
534534
enter = type(manager).__enter__
535535
exit = type(manager).__exit__
536536
value = enter(manager)
537-
hit_except = False
538537

539538
try:
540539
TARGET = value
541540
SUITE
542541
except:
543-
hit_except = True
544542
if not exit(manager, *sys.exc_info()):
545543
raise
546-
finally:
547-
if not hit_except:
548-
exit(manager, None, None, None)
544+
else:
545+
exit(manager, None, None, None)
549546

550547
With more than one item, the context managers are processed as if multiple
551548
:keyword:`with` statements were nested::

_sources/using/windows.rst.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ When writing to the Windows Registry, the following behaviors exist:
434434
For more detail on the technical basis for these limitations, please consult
435435
Microsoft's documentation on packaged full-trust apps, currently available at
436436
`docs.microsoft.com/en-us/windows/msix/desktop/desktop-to-uwp-behind-the-scenes
437-
<https://docs.microsoft.com/en-us/windows/msix/desktop/desktop-to-uwp-behind-the-scenes>`_
437+
<https://learn.microsoft.com/windows/msix/desktop/desktop-to-uwp-behind-the-scenes>`_
438438

439439

440440
.. _windows-nuget:
@@ -535,7 +535,7 @@ dependents, such as Idle), pip and the Python documentation are not included.
535535
.. note::
536536

537537
The embedded distribution does not include the `Microsoft C Runtime
538-
<https://docs.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist#visual-studio-2015-2017-2019-and-2022>`_ and it is
538+
<https://learn.microsoft.com/cpp/windows/latest-supported-vc-redist#visual-studio-2015-2017-2019-and-2022>`_ and it is
539539
the responsibility of the application installer to provide this. The
540540
runtime may have already been installed on a user's system previously or
541541
automatically via Windows Update, and can be detected by finding
@@ -678,13 +678,13 @@ System variables, you need non-restricted access to your machine
678678

679679
.. seealso::
680680

681-
https://docs.microsoft.com/en-us/windows/win32/procthread/environment-variables
681+
https://learn.microsoft.com/windows/win32/procthread/environment-variables
682682
Overview of environment variables on Windows
683683

684-
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/set_1
684+
https://learn.microsoft.com/windows-server/administration/windows-commands/set_1
685685
The ``set`` command, for temporarily modifying environment variables
686686

687-
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/setx
687+
https://learn.microsoft.com/windows-server/administration/windows-commands/setx
688688
The ``setx`` command, for permanently modifying environment variables
689689

690690

@@ -1290,13 +1290,13 @@ is a collection of modules for advanced Windows-specific support. This includes
12901290
utilities for:
12911291

12921292
* `Component Object Model
1293-
<https://docs.microsoft.com/en-us/windows/win32/com/component-object-model--com--portal>`_
1293+
<https://learn.microsoft.com/windows/win32/com/component-object-model--com--portal>`_
12941294
(COM)
12951295
* Win32 API calls
12961296
* Registry
12971297
* Event log
12981298
* `Microsoft Foundation Classes
1299-
<https://docs.microsoft.com/en-us/cpp/mfc/mfc-desktop-applications>`_
1299+
<https://learn.microsoft.com/cpp/mfc/mfc-desktop-applications>`_
13001300
(MFC) user interfaces
13011301

13021302
`PythonWin <https://web.archive.org/web/20060524042422/

_sources/whatsnew/3.8.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ Add option ``--json-lines`` to parse every input line as a separate JSON object.
936936
logging
937937
-------
938938

939-
Added a *force* keyword argument to :func:`logging.basicConfig`
939+
Added a *force* keyword argument to :func:`logging.basicConfig`.
940940
When set to true, any existing handlers attached
941941
to the root logger are removed and closed before carrying out the
942942
configuration specified by the other arguments.

about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ <h3>瀏覽</h3>
320320
<a href="https://www.python.org/psf/donations/">Please donate.</a>
321321
<br />
322322
<br />
323-
最後更新於 11月 11, 2024 (06:21 UTC)。
323+
最後更新於 11月 12, 2024 (04:16 UTC)。
324324

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

bugs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ <h2>說明文件的錯誤<a class="headerlink" href="#documentation-bugs" title=
231231
</section>
232232
<section id="getting-started-contributing-to-python-yourself">
233233
<span id="contributing-to-python"></span><h2>開始讓自己貢獻 Python<a class="headerlink" href="#getting-started-contributing-to-python-yourself" title="連結到這個標頭"></a></h2>
234-
<p>除了只是回報你所發現的錯誤之外,同樣也歡迎你提交修正它們的修補程式 (patch)。你可以在 <a class="reference external" href="https://mail.python.org/mailman3/lists/core-mentorship.python.org/">Python 開發者指南</a>中找到如何開始修補 Python 的更多資訊。如果你有任何問題,<a class="reference external" href="https://devguide.python.org/">核心導師郵寄清單</a>是一個友善的地方,你可以在那裡得到,關於 Python 修正錯誤的過程中,所有問題的答案。</p>
234+
<p>除了只是回報你所發現的錯誤之外,同樣也歡迎你提交修正它們的修補程式 (patch)。你可以在 <a class="reference external" href="https://devguide.python.org/">Python 開發者指南</a>中找到如何開始修補 Python 的更多資訊。如果你有任何問題,<a class="reference external" href="https://mail.python.org/mailman3/lists/core-mentorship.python.org/">核心導師郵寄清單</a>是一個友善的地方,你可以在那裡得到,關於 Python 修正錯誤的過程中,所有問題的答案。</p>
235235
</section>
236236
</section>
237237

@@ -359,7 +359,7 @@ <h3>瀏覽</h3>
359359
<a href="https://www.python.org/psf/donations/">Please donate.</a>
360360
<br />
361361
<br />
362-
最後更新於 11月 11, 2024 (06:21 UTC)。
362+
最後更新於 11月 12, 2024 (04:16 UTC)。
363363

364364
<a href="/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
<a href="https://www.python.org/psf/donations/">Please donate.</a>
330330
<br />
331331
<br />
332-
最後更新於 11月 11, 2024 (06:21 UTC)。
332+
最後更新於 11月 12, 2024 (04:16 UTC)。
333333

334334
<a href="/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
@@ -344,7 +344,7 @@ <h3>瀏覽</h3>
344344
<a href="https://www.python.org/psf/donations/">Please donate.</a>
345345
<br />
346346
<br />
347-
最後更新於 11月 11, 2024 (06:21 UTC)。
347+
最後更新於 11月 12, 2024 (04:16 UTC)。
348348

349349
<a href="/bugs.html">Found a bug</a>?
350350

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
<a href="https://www.python.org/psf/donations/">Please donate.</a>
377377
<br />
378378
<br />
379-
最後更新於 11月 11, 2024 (06:21 UTC)。
379+
最後更新於 11月 12, 2024 (04:16 UTC)。
380380

381381
<a href="/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
@@ -924,7 +924,7 @@ <h3>瀏覽</h3>
924924
<a href="https://www.python.org/psf/donations/">Please donate.</a>
925925
<br />
926926
<br />
927-
最後更新於 11月 11, 2024 (06:21 UTC)。
927+
最後更新於 11月 12, 2024 (04:16 UTC)。
928928

929929
<a href="/bugs.html">Found a bug</a>?
930930

c-api/bool.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ <h3>瀏覽</h3>
341341
<a href="https://www.python.org/psf/donations/">Please donate.</a>
342342
<br />
343343
<br />
344-
最後更新於 11月 11, 2024 (06:21 UTC)。
344+
最後更新於 11月 12, 2024 (04:16 UTC)。
345345

346346
<a href="/bugs.html">Found a bug</a>?
347347

c-api/buffer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ <h3>瀏覽</h3>
10161016
<a href="https://www.python.org/psf/donations/">Please donate.</a>
10171017
<br />
10181018
<br />
1019-
最後更新於 11月 11, 2024 (06:21 UTC)。
1019+
最後更新於 11月 12, 2024 (04:16 UTC)。
10201020

10211021
<a href="/bugs.html">Found a bug</a>?
10221022

c-api/bytearray.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ <h3>瀏覽</h3>
400400
<a href="https://www.python.org/psf/donations/">Please donate.</a>
401401
<br />
402402
<br />
403-
最後更新於 11月 11, 2024 (06:21 UTC)。
403+
最後更新於 11月 12, 2024 (04:16 UTC)。
404404

405405
<a href="/bugs.html">Found a bug</a>?
406406

c-api/bytes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ <h3>瀏覽</h3>
521521
<a href="https://www.python.org/psf/donations/">Please donate.</a>
522522
<br />
523523
<br />
524-
最後更新於 11月 11, 2024 (06:21 UTC)。
524+
最後更新於 11月 12, 2024 (04:16 UTC)。
525525

526526
<a href="/bugs.html">Found a bug</a>?
527527

c-api/call.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ <h3>瀏覽</h3>
652652
<a href="https://www.python.org/psf/donations/">Please donate.</a>
653653
<br />
654654
<br />
655-
最後更新於 11月 11, 2024 (06:21 UTC)。
655+
最後更新於 11月 12, 2024 (04:16 UTC)。
656656

657657
<a href="/bugs.html">Found a bug</a>?
658658

c-api/capsule.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ <h3>瀏覽</h3>
441441
<a href="https://www.python.org/psf/donations/">Please donate.</a>
442442
<br />
443443
<br />
444-
最後更新於 11月 11, 2024 (06:21 UTC)。
444+
最後更新於 11月 12, 2024 (04:16 UTC)。
445445

446446
<a href="/bugs.html">Found a bug</a>?
447447

c-api/cell.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ <h3>瀏覽</h3>
341341
<a href="https://www.python.org/psf/donations/">Please donate.</a>
342342
<br />
343343
<br />
344-
最後更新於 11月 11, 2024 (06:21 UTC)。
344+
最後更新於 11月 12, 2024 (04:16 UTC)。
345345

346346
<a href="/bugs.html">Found a bug</a>?
347347

c-api/code.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ <h3>瀏覽</h3>
606606
<a href="https://www.python.org/psf/donations/">Please donate.</a>
607607
<br />
608608
<br />
609-
最後更新於 11月 11, 2024 (06:21 UTC)。
609+
最後更新於 11月 12, 2024 (04:16 UTC)。
610610

611611
<a href="/bugs.html">Found a bug</a>?
612612

c-api/codec.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ <h3>瀏覽</h3>
445445
<a href="https://www.python.org/psf/donations/">Please donate.</a>
446446
<br />
447447
<br />
448-
最後更新於 11月 11, 2024 (06:21 UTC)。
448+
最後更新於 11月 12, 2024 (04:16 UTC)。
449449

450450
<a href="/bugs.html">Found a bug</a>?
451451

c-api/complex.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ <h3>瀏覽</h3>
456456
<a href="https://www.python.org/psf/donations/">Please donate.</a>
457457
<br />
458458
<br />
459-
最後更新於 11月 11, 2024 (06:21 UTC)。
459+
最後更新於 11月 12, 2024 (04:16 UTC)。
460460

461461
<a href="/bugs.html">Found a bug</a>?
462462

c-api/concrete.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ <h3>瀏覽</h3>
464464
<a href="https://www.python.org/psf/donations/">Please donate.</a>
465465
<br />
466466
<br />
467-
最後更新於 11月 11, 2024 (06:21 UTC)。
467+
最後更新於 11月 12, 2024 (04:16 UTC)。
468468

469469
<a href="/bugs.html">Found a bug</a>?
470470

c-api/contextvars.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ <h3>瀏覽</h3>
451451
<a href="https://www.python.org/psf/donations/">Please donate.</a>
452452
<br />
453453
<br />
454-
最後更新於 11月 11, 2024 (06:21 UTC)。
454+
最後更新於 11月 12, 2024 (04:16 UTC)。
455455

456456
<a href="/bugs.html">Found a bug</a>?
457457

c-api/conversion.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ <h3>瀏覽</h3>
390390
<a href="https://www.python.org/psf/donations/">Please donate.</a>
391391
<br />
392392
<br />
393-
最後更新於 11月 11, 2024 (06:21 UTC)。
393+
最後更新於 11月 12, 2024 (04:16 UTC)。
394394

395395
<a href="/bugs.html">Found a bug</a>?
396396

c-api/coro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ <h3>瀏覽</h3>
319319
<a href="https://www.python.org/psf/donations/">Please donate.</a>
320320
<br />
321321
<br />
322-
最後更新於 11月 11, 2024 (06:21 UTC)。
322+
最後更新於 11月 12, 2024 (04:16 UTC)。
323323

324324
<a href="/bugs.html">Found a bug</a>?
325325

c-api/datetime.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ <h3>瀏覽</h3>
630630
<a href="https://www.python.org/psf/donations/">Please donate.</a>
631631
<br />
632632
<br />
633-
最後更新於 11月 11, 2024 (06:21 UTC)。
633+
最後更新於 11月 12, 2024 (04:16 UTC)。
634634

635635
<a href="/bugs.html">Found a bug</a>?
636636

c-api/descriptor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ <h3>瀏覽</h3>
334334
<a href="https://www.python.org/psf/donations/">Please donate.</a>
335335
<br />
336336
<br />
337-
最後更新於 11月 11, 2024 (06:21 UTC)。
337+
最後更新於 11月 12, 2024 (04:16 UTC)。
338338

339339
<a href="/bugs.html">Found a bug</a>?
340340

c-api/dict.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ <h3>瀏覽</h3>
746746
<a href="https://www.python.org/psf/donations/">Please donate.</a>
747747
<br />
748748
<br />
749-
最後更新於 11月 11, 2024 (06:21 UTC)。
749+
最後更新於 11月 12, 2024 (04:16 UTC)。
750750

751751
<a href="/bugs.html">Found a bug</a>?
752752

c-api/exceptions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1708,7 +1708,7 @@ <h3>瀏覽</h3>
17081708
<a href="https://www.python.org/psf/donations/">Please donate.</a>
17091709
<br />
17101710
<br />
1711-
最後更新於 11月 11, 2024 (06:21 UTC)。
1711+
最後更新於 11月 12, 2024 (04:16 UTC)。
17121712

17131713
<a href="/bugs.html">Found a bug</a>?
17141714

c-api/file.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ <h3>瀏覽</h3>
366366
<a href="https://www.python.org/psf/donations/">Please donate.</a>
367367
<br />
368368
<br />
369-
最後更新於 11月 11, 2024 (06:21 UTC)。
369+
最後更新於 11月 12, 2024 (04:16 UTC)。
370370

371371
<a href="/bugs.html">Found a bug</a>?
372372

c-api/float.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ <h3>瀏覽</h3>
489489
<a href="https://www.python.org/psf/donations/">Please donate.</a>
490490
<br />
491491
<br />
492-
最後更新於 11月 11, 2024 (06:21 UTC)。
492+
最後更新於 11月 12, 2024 (04:16 UTC)。
493493

494494
<a href="/bugs.html">Found a bug</a>?
495495

c-api/frame.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ <h3>瀏覽</h3>
508508
<a href="https://www.python.org/psf/donations/">Please donate.</a>
509509
<br />
510510
<br />
511-
最後更新於 11月 11, 2024 (06:21 UTC)。
511+
最後更新於 11月 12, 2024 (04:16 UTC)。
512512

513513
<a href="/bugs.html">Found a bug</a>?
514514

c-api/function.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ <h3>瀏覽</h3>
468468
<a href="https://www.python.org/psf/donations/">Please donate.</a>
469469
<br />
470470
<br />
471-
最後更新於 11月 11, 2024 (06:21 UTC)。
471+
最後更新於 11月 12, 2024 (04:16 UTC)。
472472

473473
<a href="/bugs.html">Found a bug</a>?
474474

c-api/gcsupport.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ <h3>瀏覽</h3>
611611
<a href="https://www.python.org/psf/donations/">Please donate.</a>
612612
<br />
613613
<br />
614-
最後更新於 11月 11, 2024 (06:21 UTC)。
614+
最後更新於 11月 12, 2024 (04:16 UTC)。
615615

616616
<a href="/bugs.html">Found a bug</a>?
617617

c-api/gen.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ <h3>瀏覽</h3>
328328
<a href="https://www.python.org/psf/donations/">Please donate.</a>
329329
<br />
330330
<br />
331-
最後更新於 11月 11, 2024 (06:21 UTC)。
331+
最後更新於 11月 12, 2024 (04:16 UTC)。
332332

333333
<a href="/bugs.html">Found a bug</a>?
334334

c-api/hash.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ <h3>瀏覽</h3>
420420
<a href="https://www.python.org/psf/donations/">Please donate.</a>
421421
<br />
422422
<br />
423-
最後更新於 11月 11, 2024 (06:21 UTC)。
423+
最後更新於 11月 12, 2024 (04:16 UTC)。
424424

425425
<a href="/bugs.html">Found a bug</a>?
426426

c-api/import.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ <h3>瀏覽</h3>
633633
<a href="https://www.python.org/psf/donations/">Please donate.</a>
634634
<br />
635635
<br />
636-
最後更新於 11月 11, 2024 (06:21 UTC)。
636+
最後更新於 11月 12, 2024 (04:16 UTC)。
637637

638638
<a href="/bugs.html">Found a bug</a>?
639639

0 commit comments

Comments
 (0)