@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.7\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2020-04-10 22:51 +0000\n "
14
+ "POT-Creation-Date : 2020-05-26 14:02 +0000\n "
15
15
"PO-Revision-Date : 2019-09-01 03:12+0000\n "
16
16
"Last-Translator : tomo, 2019\n "
17
17
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -181,13 +181,10 @@ msgstr ""
181
181
#: ../../library/select.rst:119
182
182
msgid ""
183
183
"This is a straightforward interface to the Unix :c:func:`select` system "
184
- "call. The first three arguments are sequences of 'waitable objects': either "
184
+ "call. The first three arguments are iterables of 'waitable objects': either "
185
185
"integers representing file descriptors or objects with a parameterless "
186
186
"method named :meth:`~io.IOBase.fileno` returning such an integer:"
187
187
msgstr ""
188
- "Unix の :c:func:`select` システムコールに対する直接的なインタフェースです。最初の 3 つの引数は '待機可能オブジェクト' "
189
- "からなるシーケンスです: 待機可能オブジェクトとは、ファイル記述子を表す整数値か、そのような整数を返す引数なしメソッド "
190
- ":meth:`~io.IOBase.fileno` を持つオブジェクトです。"
191
188
192
189
#: ../../library/select.rst:124
193
190
msgid "*rlist*: wait until ready for reading"
@@ -207,18 +204,13 @@ msgstr ""
207
204
208
205
#: ../../library/select.rst:129
209
206
msgid ""
210
- "Empty sequences are allowed, but acceptance of three empty sequences is "
207
+ "Empty iterables are allowed, but acceptance of three empty iterables is "
211
208
"platform-dependent. (It is known to work on Unix but not on Windows.) The "
212
209
"optional *timeout* argument specifies a time-out as a floating point number "
213
210
"in seconds. When the *timeout* argument is omitted the function blocks "
214
211
"until at least one file descriptor is ready. A time-out value of zero "
215
212
"specifies a poll and never blocks."
216
213
msgstr ""
217
- "引数に空のシーケンスを指定してもかまいませんが、3 つの引数全てを空のシーケンスにしてもよいかどうかはプラットフォームに依存します (Unix "
218
- "では動作し、Windows では動作しないことが知られています)。オプションの *timeout* "
219
- "引数にはタイムアウトまでの秒数を浮動小数点数で指定します。*timeout* "
220
- "引数が省略された場合、関数は少なくとも一つのファイル記述子が何らかの準備完了状態になるまでブロックします。*timeout* に 0 "
221
- "を指定した場合は、ポーリングを行いブロックしないことを示します。"
222
214
223
215
#: ../../library/select.rst:136
224
216
msgid ""
@@ -231,18 +223,13 @@ msgstr ""
231
223
232
224
#: ../../library/select.rst:144
233
225
msgid ""
234
- "Among the acceptable object types in the sequences are Python :term:`file "
226
+ "Among the acceptable object types in the iterables are Python :term:`file "
235
227
"objects <file object>` (e.g. ``sys.stdin``, or objects returned by "
236
228
":func:`open` or :func:`os.popen`), socket objects returned by "
237
229
":func:`socket.socket`. You may also define a :dfn:`wrapper` class yourself,"
238
230
" as long as it has an appropriate :meth:`~io.IOBase.fileno` method (that "
239
231
"really returns a file descriptor, not just a random integer)."
240
232
msgstr ""
241
- "シーケンスの中に含めることのできるオブジェクトは Python :term:`ファイルオブジェクト <file object>` (例えば "
242
- "``sys.stdin`` や、 :func:`open` または :func:`os.popen` が返すオブジェクト)、 "
243
- ":func:`socket.socket` が返すソケットオブジェクトです。 :dfn:`ラッパー <wrapper>` "
244
- "クラスを自分で定義することもできます。この場合、適切な (まったくデタラメな数ではなく本物のファイル記述子を返す) "
245
- ":meth:`~io.IOBase.fileno` メソッドを持つ必要があります。"
246
233
247
234
#: ../../library/select.rst:155
248
235
msgid ""
0 commit comments