1111# Masato HASHIMOTO <cabezon.hashimoto@gmail.com>, 2023
1212# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2023
1313# tomo, 2023
14- # righteous , 2023
14+ # digdugdog , 2023
1515# Takanori Suzuki <takanori@takanory.net>, 2023
1616# Takeshi Nakazato, 2024
1717#
@@ -20,7 +20,7 @@ msgid ""
2020msgstr ""
2121"Project-Id-Version : Python 3.14\n "
2222"Report-Msgid-Bugs-To : \n "
23- "POT-Creation-Date : 2025-05-08 02:53-0300 \n "
23+ "POT-Creation-Date : 2025-05-16 14:19+0000 \n "
2424"PO-Revision-Date : 2021-06-28 01:19+0000\n "
2525"Last-Translator : Takeshi Nakazato, 2024\n "
2626"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -1777,7 +1777,7 @@ msgid ":class:`int`"
17771777msgstr ":class:`int`"
17781778
17791779#: ../../reference/compound_stmts.rst:1167
1780- #: ../../reference/compound_stmts.rst:1919
1780+ #: ../../reference/compound_stmts.rst:1925
17811781msgid ":class:`list`"
17821782msgstr ":class:`list`"
17831783
@@ -1790,7 +1790,7 @@ msgid ":class:`str`"
17901790msgstr ":class:`str`"
17911791
17921792#: ../../reference/compound_stmts.rst:1170
1793- #: ../../reference/compound_stmts.rst:1922
1793+ #: ../../reference/compound_stmts.rst:1928
17941794msgid ":class:`tuple`"
17951795msgstr ":class:`tuple`"
17961796
@@ -2830,7 +2830,7 @@ msgstr ""
28302830
28312831#: ../../reference/compound_stmts.rst:1888
28322832msgid ""
2833- "By default, annotations are lazily evaluated in a :ref:`annotation scope "
2833+ "By default, annotations are lazily evaluated in an :ref:`annotation scope "
28342834"<annotation-scopes>`. This means that they are not evaluated when the code "
28352835"containing the annotation is evaluated. Instead, the interpreter saves "
28362836"information that can be used to evaluate the annotation later if requested. "
@@ -2851,11 +2851,20 @@ msgid ""
28512851"{'param': 'annotation'}"
28522852msgstr ""
28532853
2854- #: ../../reference/compound_stmts.rst:1903
2854+ #: ../../reference/compound_stmts.rst:1901
2855+ msgid ""
2856+ "This future statement will be deprecated and removed in a future version of "
2857+ "Python, but not before Python 3.13 reaches its end of life (see :pep:`749`). "
2858+ "When it is used, introspection tools like :func:`annotationlib."
2859+ "get_annotations` and :func:`typing.get_type_hints` are less likely to be "
2860+ "able to resolve annotations at runtime."
2861+ msgstr ""
2862+
2863+ #: ../../reference/compound_stmts.rst:1909
28552864msgid "Footnotes"
28562865msgstr "脚注"
28572866
2858- #: ../../reference/compound_stmts.rst:1904
2867+ #: ../../reference/compound_stmts.rst:1910
28592868msgid ""
28602869"The exception is propagated to the invocation stack unless there is a :"
28612870"keyword:`finally` clause which happens to raise another exception. That new "
@@ -2864,87 +2873,87 @@ msgstr ""
28642873"例外は、別の例外を送出するような :keyword:`finally` 節が無い場合にのみ呼び出"
28652874"しスタックへ伝わります。新しい例外によって、古い例外は失われます。"
28662875
2867- #: ../../reference/compound_stmts.rst:1908
2876+ #: ../../reference/compound_stmts.rst:1914
28682877msgid "In pattern matching, a sequence is defined as one of the following:"
28692878msgstr ""
28702879
2871- #: ../../reference/compound_stmts.rst:1910
2880+ #: ../../reference/compound_stmts.rst:1916
28722881msgid "a class that inherits from :class:`collections.abc.Sequence`"
28732882msgstr ":class:`collections.abc.Sequence` を継承したクラス。"
28742883
2875- #: ../../reference/compound_stmts.rst:1911
2884+ #: ../../reference/compound_stmts.rst:1917
28762885msgid ""
28772886"a Python class that has been registered as :class:`collections.abc.Sequence`"
28782887msgstr ":class:`collections.abc.Sequence` として登録されたPythonクラス。"
28792888
2880- #: ../../reference/compound_stmts.rst:1912
2889+ #: ../../reference/compound_stmts.rst:1918
28812890msgid ""
28822891"a builtin class that has its (CPython) :c:macro:`Py_TPFLAGS_SEQUENCE` bit set"
28832892msgstr ""
28842893
2885- #: ../../reference/compound_stmts.rst:1913
2886- #: ../../reference/compound_stmts.rst:1932
2894+ #: ../../reference/compound_stmts.rst:1919
2895+ #: ../../reference/compound_stmts.rst:1938
28872896msgid "a class that inherits from any of the above"
28882897msgstr ""
28892898
2890- #: ../../reference/compound_stmts.rst:1915
2899+ #: ../../reference/compound_stmts.rst:1921
28912900msgid "The following standard library classes are sequences:"
28922901msgstr ""
28932902
2894- #: ../../reference/compound_stmts.rst:1917
2903+ #: ../../reference/compound_stmts.rst:1923
28952904msgid ":class:`array.array`"
28962905msgstr ":class:`array.array`"
28972906
2898- #: ../../reference/compound_stmts.rst:1918
2907+ #: ../../reference/compound_stmts.rst:1924
28992908msgid ":class:`collections.deque`"
29002909msgstr ":class:`collections.deque`"
29012910
2902- #: ../../reference/compound_stmts.rst:1920
2911+ #: ../../reference/compound_stmts.rst:1926
29032912msgid ":class:`memoryview`"
29042913msgstr ":class:`memoryview`"
29052914
2906- #: ../../reference/compound_stmts.rst:1921
2915+ #: ../../reference/compound_stmts.rst:1927
29072916msgid ":class:`range`"
29082917msgstr ":class:`range`"
29092918
2910- #: ../../reference/compound_stmts.rst:1924
2919+ #: ../../reference/compound_stmts.rst:1930
29112920msgid ""
29122921"Subject values of type ``str``, ``bytes``, and ``bytearray`` do not match "
29132922"sequence patterns."
29142923msgstr ""
29152924
2916- #: ../../reference/compound_stmts.rst:1927
2925+ #: ../../reference/compound_stmts.rst:1933
29172926msgid "In pattern matching, a mapping is defined as one of the following:"
29182927msgstr ""
29192928
2920- #: ../../reference/compound_stmts.rst:1929
2929+ #: ../../reference/compound_stmts.rst:1935
29212930msgid "a class that inherits from :class:`collections.abc.Mapping`"
29222931msgstr ""
29232932
2924- #: ../../reference/compound_stmts.rst:1930
2933+ #: ../../reference/compound_stmts.rst:1936
29252934msgid ""
29262935"a Python class that has been registered as :class:`collections.abc.Mapping`"
29272936msgstr ""
29282937
2929- #: ../../reference/compound_stmts.rst:1931
2938+ #: ../../reference/compound_stmts.rst:1937
29302939msgid ""
29312940"a builtin class that has its (CPython) :c:macro:`Py_TPFLAGS_MAPPING` bit set"
29322941msgstr ""
29332942
2934- #: ../../reference/compound_stmts.rst:1934
2943+ #: ../../reference/compound_stmts.rst:1940
29352944msgid ""
29362945"The standard library classes :class:`dict` and :class:`types."
29372946"MappingProxyType` are mappings."
29382947msgstr ""
29392948
2940- #: ../../reference/compound_stmts.rst:1937
2949+ #: ../../reference/compound_stmts.rst:1943
29412950msgid ""
29422951"A string literal appearing as the first statement in the function body is "
29432952"transformed into the function's :attr:`~function.__doc__` attribute and "
29442953"therefore the function's :term:`docstring`."
29452954msgstr ""
29462955
2947- #: ../../reference/compound_stmts.rst:1941
2956+ #: ../../reference/compound_stmts.rst:1947
29482957msgid ""
29492958"A string literal appearing as the first statement in the class body is "
29502959"transformed into the namespace's :attr:`~type.__doc__` item and therefore "
0 commit comments