Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c02bf16

Browse files
[po] auto sync
1 parent 89b9e91 commit c02bf16

1 file changed

Lines changed: 30 additions & 1 deletion

File tree

whatsnew/3.9.po

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,6 +627,9 @@ msgid ""
627627
"--with-builtin-hashlib-hashes=sha3,blake2`` to force use of OpenSSL based "
628628
"implementation. (Contributed by Christian Heimes in :issue:`40479`)"
629629
msgstr ""
630+
"内置的哈希模块现在可通过 ``./configure --without-builtin-hashlib-hashes`` 禁用或通过 "
631+
"``./configure --with-builtin-hashlib-hashes=sha3,blake2`` 这样的形式有选择地启用以强制使用基于"
632+
" OpenSSL 的实现。 (由 Christian Heimes 在 :issue:`40479` 中贡献)"
630633

631634
#: ../../whatsnew/3.9.rst:385
632635
msgid "http"
@@ -638,6 +641,9 @@ msgid ""
638641
"TOO_EARLY`` are added to :class:`http.HTTPStatus`. (Contributed by Dong-hee "
639642
"Na in :issue:`39509` and Ross Rhodes in :issue:`39507`.)"
640643
msgstr ""
644+
"添加 HTTP 状态码 ``103 EARLY_HINTS``, ``418 IM_A_TEAPOT`` 和 ``425 TOO_EARLY`` 到 "
645+
":class:`http.HTTPStatus`。 (由 Dong-hee Na 在 :issue:`39509` 以及 Ross Rhodes 在 "
646+
":issue:`39507` 中贡献。)"
641647

642648
#: ../../whatsnew/3.9.rst:391
643649
msgid "imaplib"
@@ -652,6 +658,10 @@ msgid ""
652658
":class:`~imaplib.IMAP4_stream` were applied to this change. (Contributed by "
653659
"Dong-hee Na in :issue:`38615`.)"
654660
msgstr ""
661+
"现在 :class:`~imaplib.IMAP4` 和 :class:`~imaplib.IMAP4_SSL` 的构造器具有可选的 *timeout*"
662+
" 形参。 并且,现在 :meth:`~imaplib.IMAP4.open` 方法也具有可选的 *timeout* 形参提供同样的修改。 "
663+
":class:`~imaplib.IMAP4_SSL` 和 :class:`~imaplib.IMAP4_stream` "
664+
"中被重载的方法也应用了这个修改。 (由 Dong-hee Na 在 :issue:`38615` 中贡献。)"
655665

656666
#: ../../whatsnew/3.9.rst:400
657667
msgid ""
@@ -662,6 +672,9 @@ msgid ""
662672
"permanently removed from the currently selected mailbox. (Contributed by "
663673
"Dong-hee Na in :issue:`40375`.)"
664674
msgstr ""
675+
"增加了 :meth:`imaplib.IMAP4.unselect`。 :meth:`imaplib.IMAP4.unselect` "
676+
"会释放关联到选定邮箱的服务器资源并将服务器返回到已认证状态。 此命令会执行与 :meth:`imaplib.IMAP4.close` "
677+
"相同的动作,区别在于它不会从当前选定邮箱中永久性地移除消息。 (由 Dong-hee Na 在 :issue:`40375` 中贡献。)"
665678

666679
#: ../../whatsnew/3.9.rst:408
667680
msgid "importlib"
@@ -674,6 +687,9 @@ msgid ""
674687
" :exc:`ValueError` for invalid relative import attempts. (Contributed by "
675688
"Ngalim Siregar in :issue:`37444`.)"
676689
msgstr ""
690+
"为提升与 import 语句的一致性,现在 :func:`importlib.util.resolve_name` 对于无效的相对导入尝试会引发 "
691+
":exc:`ImportError` 而不是 :exc:`ValueError`。 (由 Ngalim Siregar 在 :issue:`37444`"
692+
" 中贡献。)"
677693

678694
#: ../../whatsnew/3.9.rst:416
679695
msgid "inspect"
@@ -685,6 +701,8 @@ msgid ""
685701
"regular dict. (Contributed by Inada Naoki in :issue:`36350` and "
686702
":issue:`39775`.)"
687703
msgstr ""
704+
":attr:`inspect.BoundArguments.arguments` 已从 ``OrderedDict`` 改为常规字典。 (由 Inada"
705+
" Naoki 在 :issue:`36350` 和 :issue:`39775` 中贡献。)"
688706

689707
#: ../../whatsnew/3.9.rst:422
690708
msgid "ipaddress"
@@ -694,7 +712,7 @@ msgstr "ipaddress"
694712
msgid ""
695713
":mod:`ipaddress` now supports IPv6 Scoped Addresses (IPv6 address with "
696714
"suffix ``%<scope_id>``)."
697-
msgstr ""
715+
msgstr ":mod:`ipaddress` 现在支持 IPv6 作用域地址(即带有 ``%<scope_id>`` 前缀的 IPv6 地址)。"
698716

699717
#: ../../whatsnew/3.9.rst:426
700718
msgid ""
@@ -703,6 +721,9 @@ msgid ""
703721
":attr:`~ipaddress.IPv6Address.scope_id` attribute. (Contributed by Oleksandr"
704722
" Pavliuk in :issue:`34788`.)"
705723
msgstr ""
724+
"IPv6 作用域地址可使用 :class:`ipaddress.IPv6Address` 来解析。 作用域的区 ID 如果存在,可通过 "
725+
":attr:`~ipaddress.IPv6Address.scope_id` 属性来获取。 (由 Oleksandr Pavliuk 在 "
726+
":issue:`34788` 中贡献。)"
706727

707728
#: ../../whatsnew/3.9.rst:431
708729
msgid "math"
@@ -714,25 +735,33 @@ msgid ""
714735
"Formerly, it only supported two arguments. (Contributed by Serhiy Storchaka "
715736
"in :issue:`39648`.)"
716737
msgstr ""
738+
"对 :func:`math.gcd` 函数进行了扩展以处理多个参数。 在之前版本中,它只支持两个参数。 (由 Serhiy Storchaka 在 "
739+
":issue:`39648` 中贡献。)"
717740

718741
#: ../../whatsnew/3.9.rst:437
719742
msgid ""
720743
"Add :func:`math.lcm`: return the least common multiple of specified "
721744
"arguments. (Contributed by Mark Dickinson, Ananthakrishnan and Serhiy "
722745
"Storchaka in :issue:`39479` and :issue:`39648`.)"
723746
msgstr ""
747+
"增加了 :func:`math.lcm`: 返回指定参数的最小公倍数。 (由 Mark Dickinson, Ananthakrishnan 和 "
748+
"Serhiy Storchaka 在 :issue:`39479` 和 :issue:`39648` 中贡献。)"
724749

725750
#: ../../whatsnew/3.9.rst:441
726751
msgid ""
727752
"Add :func:`math.nextafter`: return the next floating-point value after *x* "
728753
"towards *y*. (Contributed by Victor Stinner in :issue:`39288`.)"
729754
msgstr ""
755+
"增加了 :func:`math.nextafter`: 返回从 *x* 往 *y* 方向的下一个浮点数值。 (由 Victor Stinner 在 "
756+
":issue:`39288` 中贡献。)"
730757

731758
#: ../../whatsnew/3.9.rst:445
732759
msgid ""
733760
"Add :func:`math.ulp`: return the value of the least significant bit of a "
734761
"float. (Contributed by Victor Stinner in :issue:`39310`.)"
735762
msgstr ""
763+
"增加了 :func:`math.ulp`: 返回一个浮点数的最小有效比特位。 (由 Victor Stinner 在 :issue:`39310` "
764+
"中贡献。)"
736765

737766
#: ../../whatsnew/3.9.rst:450
738767
msgid "multiprocessing"

0 commit comments

Comments
 (0)