@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-01-25 14:14 +0000\n "
14+ "POT-Creation-Date : 2026-01-27 14:24 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -853,7 +853,11 @@ msgid ""
853853"``PyModule_FromDefAndSpec``)."
854854msgstr ""
855855
856- #: ../../c-api/module.rst:682
856+ #: ../../c-api/module.rst:678
857+ msgid "Return ``0`` on success. Return ``-1`` with an exception set on error."
858+ msgstr ""
859+
860+ #: ../../c-api/module.rst:685
857861msgid ""
858862"Indicate that *module* does or does not support running without the global "
859863"interpreter lock (GIL), using one of the values from :c:macro:`Py_mod_gil`. "
@@ -865,19 +869,19 @@ msgid ""
865869"on error, ``0`` on success."
866870msgstr ""
867871
868- #: ../../c-api/module.rst:696
872+ #: ../../c-api/module.rst:699
869873msgid "Module lookup (single-phase initialization)"
870874msgstr ""
871875
872- #: ../../c-api/module.rst:698
876+ #: ../../c-api/module.rst:701
873877msgid ""
874878"The legacy :ref:`single-phase initialization <single-phase-initialization>` "
875879"initialization scheme creates singleton modules that can be looked up in the "
876880"context of the current interpreter. This allows the module object to be "
877881"retrieved later with only a reference to the module definition."
878882msgstr ""
879883
880- #: ../../c-api/module.rst:703
884+ #: ../../c-api/module.rst:706
881885msgid ""
882886"These functions will not work on modules created using multi-phase "
883887"initialization, since multiple such modules can be created from a single "
@@ -886,7 +890,7 @@ msgstr ""
886890"多段階初期化を使うと単一の定義から複数のモジュールが作成できるので、これらの"
887891"関数は多段階初期化を使って作成されたモジュールには使えません。"
888892
889- #: ../../c-api/module.rst:708
893+ #: ../../c-api/module.rst:711
890894msgid ""
891895"Returns the module object that was created from *def* for the current "
892896"interpreter. This method requires that the module object has been attached "
@@ -900,7 +904,7 @@ msgstr ""
900904"ジュールオブジェクトが見付からない、もしくは事前にインタプリタの state に連結"
901905"されていない場合は、 ``NULL`` を返します。"
902906
903- #: ../../c-api/module.rst:715
907+ #: ../../c-api/module.rst:718
904908msgid ""
905909"Attaches the module object passed to the function to the interpreter state. "
906910"This allows the module object to be accessible via :c:func:"
@@ -910,11 +914,11 @@ msgstr ""
910914"の関数を使うことで :c:func:`PyState_FindModule` からモジュールオブジェクトに"
911915"アクセスできるようになります。"
912916
913- #: ../../c-api/module.rst:718
917+ #: ../../c-api/module.rst:721
914918msgid "Only effective on modules created using single-phase initialization."
915919msgstr "一段階初期化を使って作成されたモジュールにのみ有効です。"
916920
917- #: ../../c-api/module.rst:720
921+ #: ../../c-api/module.rst:723
918922msgid ""
919923"Python calls ``PyState_AddModule`` automatically after importing a module "
920924"that uses :ref:`single-phase initialization <single-phase-initialization>`, "
@@ -926,21 +930,21 @@ msgid ""
926930"state updates)."
927931msgstr ""
928932
929- #: ../../c-api/module.rst:729
933+ #: ../../c-api/module.rst:732
930934msgid ""
931935"If a module was attached previously using the same *def*, it is replaced by "
932936"the new *module*."
933937msgstr ""
934938
935- #: ../../c-api/module.rst:732 ../../c-api/module.rst:743
939+ #: ../../c-api/module.rst:735 ../../c-api/module.rst:746
936940msgid "The caller must have an :term:`attached thread state`."
937941msgstr ""
938942
939- #: ../../c-api/module.rst:734
943+ #: ../../c-api/module.rst:737
940944msgid "Return ``-1`` with an exception set on error, ``0`` on success."
941945msgstr ""
942946
943- #: ../../c-api/module.rst:740
947+ #: ../../c-api/module.rst:743
944948msgid ""
945949"Removes the module object created from *def* from the interpreter state. "
946950"Return ``-1`` with an exception set on error, ``0`` on success."
0 commit comments