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

Skip to content

Commit 2487af7

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent bdfb548 commit 2487af7

File tree

3 files changed

+6851
-6830
lines changed

3 files changed

+6851
-6830
lines changed

library/atexit.po

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.9\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2021-06-23 06:41+0000\n"
16+
"POT-Creation-Date: 2021-06-30 06:46+0000\n"
1717
"PO-Revision-Date: 2017-02-16 17:50+0000\n"
1818
"Last-Translator: tomo, 2019\n"
1919
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -94,31 +94,29 @@ msgstr "この関数は *func* を返し、これをデコレータとして利
9494

9595
#: ../../library/atexit.rst:51
9696
msgid ""
97-
"Remove *func* from the list of functions to be run at interpreter shutdown."
98-
" After calling :func:`unregister`, *func* is guaranteed not to be called "
99-
"when the interpreter shuts down, even if it was registered more than once. "
97+
"Remove *func* from the list of functions to be run at interpreter shutdown. "
10098
":func:`unregister` silently does nothing if *func* was not previously "
101-
"registered."
99+
"registered. If *func* has been registered more than once, every occurrence "
100+
"of that function in the :mod:`atexit` call stack will be removed. Equality "
101+
"comparisons (``==``) are used internally during unregistration, so function "
102+
"references do not need to have matching identities."
102103
msgstr ""
103-
"*func* をインタプリタ終了時に実行される関数のリストから削除します。:func:`unregister` で削除されると、*func* "
104-
"は、たとえ複数個登録されていてもインタプリタ終了時に呼び出されないことが保証されます。*func* "
105-
"が登録されていない場合、:func:`unregister` は何もせず、何も通知しません。"
106104

107-
#: ../../library/atexit.rst:61
105+
#: ../../library/atexit.rst:62
108106
msgid "Module :mod:`readline`"
109107
msgstr ":mod:`readline` モジュール"
110108

111-
#: ../../library/atexit.rst:61
109+
#: ../../library/atexit.rst:62
112110
msgid ""
113111
"Useful example of :mod:`atexit` to read and write :mod:`readline` history "
114112
"files."
115113
msgstr ":mod:`readline` ヒストリファイルを読み書きするための :mod:`atexit` の有用な例です。"
116114

117-
#: ../../library/atexit.rst:68
115+
#: ../../library/atexit.rst:69
118116
msgid ":mod:`atexit` Example"
119117
msgstr ":mod:`atexit` の例"
120118

121-
#: ../../library/atexit.rst:70
119+
#: ../../library/atexit.rst:71
122120
msgid ""
123121
"The following simple example demonstrates how a module can initialize a "
124122
"counter from a file when it is imported and save the counter's updated value"
@@ -129,16 +127,16 @@ msgstr ""
129127
"した時にカウンタを初期化しておき、プログラムが終了するときにアプリケーションがこのモジュールを明示的に呼び出さなくてもカウンタが更新されるようにする方法を示しています。"
130128
" ::"
131129

132-
#: ../../library/atexit.rst:93
130+
#: ../../library/atexit.rst:94
133131
msgid ""
134132
"Positional and keyword arguments may also be passed to :func:`register` to "
135133
"be passed along to the registered function when it is called::"
136134
msgstr ":func:`register` に指定した位置引数とキーワード引数は登録した関数を呼び出す際に渡されます::"
137135

138-
#: ../../library/atexit.rst:105
136+
#: ../../library/atexit.rst:106
139137
msgid "Usage as a :term:`decorator`::"
140138
msgstr ":term:`デコレータ <decorator>` として利用する例::"
141139

142-
#: ../../library/atexit.rst:113
140+
#: ../../library/atexit.rst:114
143141
msgid "This only works with functions that can be called without arguments."
144142
msgstr "デコレータとして利用できるのは、その関数が引数なしで呼び出された場合に限られます。"

library/graphlib.po

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.9\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
16+
"POT-Creation-Date: 2021-06-30 06:46+0000\n"
1717
"PO-Revision-Date: 2020-06-01 03:18+0000\n"
1818
"Last-Translator: Osamu NAKAMURA, 2021\n"
1919
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -203,45 +203,46 @@ msgstr ""
203203

204204
#: ../../library/graphlib.rst:157
205205
msgid ""
206-
"Returns an iterable of nodes in a topological order. Using this method does "
207-
"not require to call :meth:`TopologicalSorter.prepare` or "
208-
":meth:`TopologicalSorter.done`. This method is equivalent to::"
206+
"Returns an iterator object which will iterate over nodes in a topological "
207+
"order. When using this method, :meth:`~TopologicalSorter.prepare` and "
208+
":meth:`~TopologicalSorter.done` should not be called. This method is "
209+
"equivalent to::"
209210
msgstr ""
210211

211-
#: ../../library/graphlib.rst:168
212+
#: ../../library/graphlib.rst:169
212213
msgid ""
213214
"The particular order that is returned may depend on the specific order in "
214215
"which the items were inserted in the graph. For example:"
215216
msgstr ""
216217

217-
#: ../../library/graphlib.rst:185
218+
#: ../../library/graphlib.rst:186
218219
msgid ""
219220
"This is due to the fact that \"0\" and \"2\" are in the same level in the "
220221
"graph (they would have been returned in the same call to "
221222
":meth:`~TopologicalSorter.get_ready`) and the order between them is "
222223
"determined by the order of insertion."
223224
msgstr ""
224225

225-
#: ../../library/graphlib.rst:191
226+
#: ../../library/graphlib.rst:192
226227
msgid "If any cycle is detected, :exc:`CycleError` will be raised."
227228
msgstr ""
228229

229-
#: ../../library/graphlib.rst:197
230+
#: ../../library/graphlib.rst:198
230231
msgid "Exceptions"
231232
msgstr "例外"
232233

233-
#: ../../library/graphlib.rst:198
234+
#: ../../library/graphlib.rst:199
234235
msgid "The :mod:`graphlib` module defines the following exception classes:"
235236
msgstr ":mod:`graphlib` モジュールは以下の例外クラスを定義します:"
236237

237-
#: ../../library/graphlib.rst:202
238+
#: ../../library/graphlib.rst:203
238239
msgid ""
239240
"Subclass of :exc:`ValueError` raised by :meth:`TopologicalSorter.prepare` if"
240241
" cycles exist in the working graph. If multiple cycles exist, only one "
241242
"undefined choice among them will be reported and included in the exception."
242243
msgstr ""
243244

244-
#: ../../library/graphlib.rst:206
245+
#: ../../library/graphlib.rst:207
245246
msgid ""
246247
"The detected cycle can be accessed via the second element in the "
247248
":attr:`~CycleError.args` attribute of the exception instance and consists in"

0 commit comments

Comments
 (0)