@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.8\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2020-02-09 12:40 +0000\n "
14
+ "POT-Creation-Date :2020-07-05 14:24 +0000\n "
15
15
"PO-Revision-Date :2020-05-30 11:49+0000\n "
16
16
"Last-Translator :tomo, 2020\n "
17
17
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -150,44 +150,32 @@ msgstr ""
150
150
"数字が全くない場合、 :exc:`ValueError` が送出されます。"
151
151
152
152
#: ../../c-api/long.rst:101
153
- msgid ""
154
- "Convert a sequence of Unicode digits to a Python integer value. The Unicode"
155
- " string is first encoded to a byte string using "
156
- ":c:func:`PyUnicode_EncodeDecimal` and then converted using "
157
- ":c:func:`PyLong_FromString`."
153
+ msgid "Convert a sequence of Unicode digits to a Python integer value."
158
154
msgstr ""
159
- "Unicode 数値列を Python 整数値に変換します。Unicode 文字列はまず "
160
- ":c:func:`PyUnicode_EncodeDecimal` を用いてバイト文字列にエンコードされ、次に "
161
- ":c:func:`PyLong_FromString` を用いて変換されます。"
162
155
163
- #: ../../c-api/long.rst:107
156
+ #: ../../c-api/long.rst:105
164
157
msgid ""
165
158
"Part of the old-style :c:type:`Py_UNICODE` API; please migrate to using "
166
159
":c:func:`PyLong_FromUnicodeObject`."
167
160
msgstr ""
168
161
"古いスタイルの :c:type:`Py_UNICODE` APIの一部です; :c:func:`PyLong_FromUnicodeObject` "
169
162
"を使用するように移行してください。"
170
163
171
- #: ../../c-api/long.rst:112
164
+ #: ../../c-api/long.rst:110
172
165
msgid ""
173
166
"Convert a sequence of Unicode digits in the string *u* to a Python integer "
174
- "value. The Unicode string is first encoded to a byte string using "
175
- ":c:func:`PyUnicode_EncodeDecimal` and then converted using "
176
- ":c:func:`PyLong_FromString`."
167
+ "value."
177
168
msgstr ""
178
- "*u* 文字列中の Unicode 数値列を Python 整数値に変換します。Unicode 文字列はまず "
179
- ":c:func:`PyUnicode_EncodeDecimal` を用いてバイト文字列にエンコードされ、次に "
180
- ":c:func:`PyLong_FromString` を用いて変換されます。"
181
169
182
- #: ../../c-api/long.rst:122
170
+ #: ../../c-api/long.rst:118
183
171
msgid ""
184
172
"Create a Python integer from the pointer *p*. The pointer value can be "
185
173
"retrieved from the resulting value using :c:func:`PyLong_AsVoidPtr`."
186
174
msgstr ""
187
175
"ポインタ *p* から Python 整数値を生成します。ポインタの値は :c:func:`PyLong_AsVoidPtr` "
188
176
"を適用した結果から取得されます。"
189
177
190
- #: ../../c-api/long.rst:133 ../../c-api/long.rst:152
178
+ #: ../../c-api/long.rst:129 ../../c-api/long.rst:148
191
179
msgid ""
192
180
"Return a C :c:type:`long` representation of *obj*. If *obj* is not an "
193
181
"instance of :c:type:`PyLongObject`, first call its :meth:`__index__` or "
@@ -198,31 +186,31 @@ msgstr ""
198
186
"のインスタンスでなければ、まず、その :meth:`__index__` メソッドあるいは :meth:`__int__` メソッドを (もしあれば) "
199
187
"呼び出して、オブジェクトを :c:type:`PyLongObject` に変換します。"
200
188
201
- #: ../../c-api/long.rst:138
189
+ #: ../../c-api/long.rst:134
202
190
msgid ""
203
191
"Raise :exc:`OverflowError` if the value of *obj* is out of range for a "
204
192
":c:type:`long`."
205
193
msgstr "もし *obj* の値が :c:type:`long` の範囲外であれば、 :exc:`OverflowError` を送出します。"
206
194
207
- #: ../../c-api/long.rst:141 ../../c-api/long.rst:162 ../../c-api/long.rst:184
208
- #: ../../c-api/long.rst:205 ../../c-api/long.rst:228
195
+ #: ../../c-api/long.rst:137 ../../c-api/long.rst:158 ../../c-api/long.rst:180
196
+ #: ../../c-api/long.rst:201 ../../c-api/long.rst:224
209
197
msgid ""
210
198
"Returns ``-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate."
211
199
msgstr ""
212
200
"エラーが起きたときに ``-1`` を返します。\n"
213
201
"見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
214
202
215
- #: ../../c-api/long.rst:143 ../../c-api/long.rst:164 ../../c-api/long.rst:186
216
- #: ../../c-api/long.rst:209 ../../c-api/long.rst:294 ../../c-api/long.rst:314
203
+ #: ../../c-api/long.rst:139 ../../c-api/long.rst:160 ../../c-api/long.rst:182
204
+ #: ../../c-api/long.rst:205 ../../c-api/long.rst:290 ../../c-api/long.rst:310
217
205
msgid "Use :meth:`__index__` if available."
218
206
msgstr "可能であれば :meth:`__index__` を使うようになりました。"
219
207
220
- #: ../../c-api/long.rst:146 ../../c-api/long.rst:167 ../../c-api/long.rst:189
221
- #: ../../c-api/long.rst:212 ../../c-api/long.rst:297 ../../c-api/long.rst:317
208
+ #: ../../c-api/long.rst:142 ../../c-api/long.rst:163 ../../c-api/long.rst:185
209
+ #: ../../c-api/long.rst:208 ../../c-api/long.rst:293 ../../c-api/long.rst:313
222
210
msgid "Using :meth:`__int__` is deprecated."
223
211
msgstr ":meth:`__int__` の使用は非推奨です。"
224
212
225
- #: ../../c-api/long.rst:157
213
+ #: ../../c-api/long.rst:153
226
214
msgid ""
227
215
"If the value of *obj* is greater than :const:`LONG_MAX` or less than "
228
216
":const:`LONG_MIN`, set *\\ *overflow* to ``1`` or ``-1``, respectively, and "
@@ -234,7 +222,7 @@ msgstr ""
234
222
"*\\ *overflow* は ``0`` に設定されます。もし、ほかの例外が発生した場合は *\\ *overflow* が ``0`` に設定され "
235
223
"``-1`` を返します。"
236
224
237
- #: ../../c-api/long.rst:176 ../../c-api/long.rst:195
225
+ #: ../../c-api/long.rst:172 ../../c-api/long.rst:191
238
226
msgid ""
239
227
"Return a C :c:type:`long long` representation of *obj*. If *obj* is not an "
240
228
"instance of :c:type:`PyLongObject`, first call its :meth:`__index__` or "
@@ -244,14 +232,14 @@ msgstr ""
244
232
"*obj* が表す、Cの :c:type:`long long` 表現を返します。\n"
245
233
"もし *obj* が :c:type:`PyLongObject` のインスタンスでなければ、まず、その :meth:`__index__` メソッドあるいは :meth:`__int__` メソッドを (もしあれば) 呼び出して、オブジェクトを :c:type:`PyLongObject` に変換します。"
246
234
247
- #: ../../c-api/long.rst:181
235
+ #: ../../c-api/long.rst:177
248
236
msgid ""
249
237
"Raise :exc:`OverflowError` if the value of *obj* is out of range for a "
250
238
":c:type:`long long`."
251
239
msgstr ""
252
240
"もし *obj* の値が :c:type:`long long` の範囲外であれば、 :exc:`OverflowError` を送出します。"
253
241
254
- #: ../../c-api/long.rst:200
242
+ #: ../../c-api/long.rst:196
255
243
msgid ""
256
244
"If the value of *obj* is greater than :const:`PY_LLONG_MAX` or less than "
257
245
":const:`PY_LLONG_MIN`, set *\\ *overflow* to ``1`` or ``-1``, respectively, "
@@ -263,100 +251,100 @@ msgstr ""
263
251
"*\\ *overflow* は ``0`` に設定されます。もし、ほかの例外が発生した場合は *\\ *overflow* が ``0`` に設定され "
264
252
"``-1`` を返します。"
265
253
266
- #: ../../c-api/long.rst:222
254
+ #: ../../c-api/long.rst:218
267
255
msgid ""
268
256
"Return a C :c:type:`Py_ssize_t` representation of *pylong*. *pylong* must "
269
257
"be an instance of :c:type:`PyLongObject`."
270
258
msgstr ""
271
259
"*pylong* を表す C の :c:type:`Py_ssize_t` を返します。 *pylong* は "
272
260
":c:type:`PyLongObject` のインスタンスでなければなりません。"
273
261
274
- #: ../../c-api/long.rst:225
262
+ #: ../../c-api/long.rst:221
275
263
msgid ""
276
264
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a "
277
265
":c:type:`Py_ssize_t`."
278
266
msgstr ""
279
267
"もし *pylong* の値が :c:type:`Py_ssize_t` の範囲外であれば、 :exc:`OverflowError` を送出します。"
280
268
281
- #: ../../c-api/long.rst:237
269
+ #: ../../c-api/long.rst:233
282
270
msgid ""
283
271
"Return a C :c:type:`unsigned long` representation of *pylong*. *pylong* "
284
272
"must be an instance of :c:type:`PyLongObject`."
285
273
msgstr ""
286
274
"*pylong* を表す C の :c:type:`unsigned long` を返します。 *pylong* は "
287
275
":c:type:`PyLongObject` のインスタンスでなければなりません。"
288
276
289
- #: ../../c-api/long.rst:240
277
+ #: ../../c-api/long.rst:236
290
278
msgid ""
291
279
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a "
292
280
":c:type:`unsigned long`."
293
281
msgstr ""
294
282
"もし *pylong* の値が :c:type:`unsigned long` の範囲外であれば、 :exc:`OverflowError` "
295
283
"を送出します。"
296
284
297
- #: ../../c-api/long.rst:243
285
+ #: ../../c-api/long.rst:239
298
286
msgid ""
299
287
"Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to "
300
288
"disambiguate."
301
289
msgstr ""
302
290
"エラーが起きたときに ``(unsigned long)-1`` を返します。\n"
303
291
"見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
304
292
305
- #: ../../c-api/long.rst:253
293
+ #: ../../c-api/long.rst:249
306
294
msgid ""
307
295
"Return a C :c:type:`size_t` representation of *pylong*. *pylong* must be an"
308
296
" instance of :c:type:`PyLongObject`."
309
297
msgstr ""
310
298
"*pylong* を表す C の :c:type:`size_t` を返します。 *pylong* は :c:type:`PyLongObject` "
311
299
"のインスタンスでなければなりません。"
312
300
313
- #: ../../c-api/long.rst:256
301
+ #: ../../c-api/long.rst:252
314
302
msgid ""
315
303
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a "
316
304
":c:type:`size_t`."
317
305
msgstr ""
318
306
"もし *pylong* の値が :c:type:`size_t` の範囲外であれば、 :exc:`OverflowError` を送出します。"
319
307
320
- #: ../../c-api/long.rst:259
308
+ #: ../../c-api/long.rst:255
321
309
msgid ""
322
310
"Returns ``(size_t)-1`` on error. Use :c:func:`PyErr_Occurred` to "
323
311
"disambiguate."
324
312
msgstr ""
325
313
"エラーが起きたときに ``(size_t)-1`` を返します。\n"
326
314
"見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
327
315
328
- #: ../../c-api/long.rst:268
316
+ #: ../../c-api/long.rst:264
329
317
msgid ""
330
318
"Return a C :c:type:`unsigned long long` representation of *pylong*. "
331
319
"*pylong* must be an instance of :c:type:`PyLongObject`."
332
320
msgstr ""
333
321
"*pylong* を表す C の :c:type:`unsigned long long` を返します。 *pylong* は "
334
322
":c:type:`PyLongObject` のインスタンスでなければなりません。"
335
323
336
- #: ../../c-api/long.rst:271
324
+ #: ../../c-api/long.rst:267
337
325
msgid ""
338
326
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for an "
339
327
":c:type:`unsigned long long`."
340
328
msgstr ""
341
329
"もし *pylong* の値が :c:type:`unsigned long long` の範囲外であれば、 :exc:`OverflowError` "
342
330
"を送出します。"
343
331
344
- #: ../../c-api/long.rst:274
332
+ #: ../../c-api/long.rst:270
345
333
msgid ""
346
334
"Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` to"
347
335
" disambiguate."
348
336
msgstr ""
349
337
"エラーが起きたときに ``(unsigned long long)-1`` を返します。\n"
350
338
"見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
351
339
352
- #: ../../c-api/long.rst:277
340
+ #: ../../c-api/long.rst:273
353
341
msgid ""
354
342
"A negative *pylong* now raises :exc:`OverflowError`, not :exc:`TypeError`."
355
343
msgstr ""
356
344
"負 *pylong* を指定した際に :exc:`TypeError` ではなく、 :exc:`OverflowError` "
357
345
"を送出するようになりました。"
358
346
359
- #: ../../c-api/long.rst:283
347
+ #: ../../c-api/long.rst:279
360
348
msgid ""
361
349
"Return a C :c:type:`unsigned long` representation of *obj*. If *obj* is not"
362
350
" an instance of :c:type:`PyLongObject`, first call its :meth:`__index__` or "
@@ -366,23 +354,23 @@ msgstr ""
366
354
"*obj* が表す、Cの :c:type:`unsigned long` 表現を返します。\n"
367
355
"もし *obj* が :c:type:`PyLongObject` のインスタンスでなければ、まず、その :meth:`__index__` メソッドあるいは :meth:`__int__` メソッドを (もしあれば) 呼び出して、オブジェクトを :c:type:`PyLongObject` に変換します。"
368
356
369
- #: ../../c-api/long.rst:288
357
+ #: ../../c-api/long.rst:284
370
358
msgid ""
371
359
"If the value of *obj* is out of range for an :c:type:`unsigned long`, return"
372
360
" the reduction of that value modulo ``ULONG_MAX + 1``."
373
361
msgstr ""
374
362
"*obj* の値が :c:type:`unsigned long` の範囲から外れていた場合は、 ``ULONG_MAX + 1`` "
375
363
"を法とした剰余を返します。"
376
364
377
- #: ../../c-api/long.rst:291
365
+ #: ../../c-api/long.rst:287
378
366
msgid ""
379
367
"Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to "
380
368
"disambiguate."
381
369
msgstr ""
382
370
"エラーが起きたときに ``(unsigned long)-1`` を返します。\n"
383
371
"見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
384
372
385
- #: ../../c-api/long.rst:303
373
+ #: ../../c-api/long.rst:299
386
374
msgid ""
387
375
"Return a C :c:type:`unsigned long long` representation of *obj*. If *obj* "
388
376
"is not an instance of :c:type:`PyLongObject`, first call its "
@@ -392,45 +380,45 @@ msgstr ""
392
380
"*obj* が表す、Cの :c:type:`unsigned long long` 表現を返します。\n"
393
381
"もし *obj* が :c:type:`PyLongObject` のインスタンスでなければ、まず、その :meth:`__index__` メソッドあるいは :meth:`__int__` メソッドを (もしあれば) 呼び出して、オブジェクトを :c:type:`PyLongObject` に変換します。"
394
382
395
- #: ../../c-api/long.rst:308
383
+ #: ../../c-api/long.rst:304
396
384
msgid ""
397
385
"If the value of *obj* is out of range for an :c:type:`unsigned long long`, "
398
386
"return the reduction of that value modulo ``PY_ULLONG_MAX + 1``."
399
387
msgstr ""
400
388
"*obj* の値が :c:type:`unsigned long long` の範囲から外れていた場合は、 ``PY_ULLONG_MAX + 1`` "
401
389
"を法とした剰余を返します。"
402
390
403
- #: ../../c-api/long.rst:311
391
+ #: ../../c-api/long.rst:307
404
392
msgid ""
405
393
"Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` "
406
394
"to disambiguate."
407
395
msgstr ""
408
396
"エラーが起きたときに ``(unsigned long long)-1`` を返します。\n"
409
397
"見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
410
398
411
- #: ../../c-api/long.rst:323
399
+ #: ../../c-api/long.rst:319
412
400
msgid ""
413
401
"Return a C :c:type:`double` representation of *pylong*. *pylong* must be an"
414
402
" instance of :c:type:`PyLongObject`."
415
403
msgstr ""
416
404
"*pylong* を表す C の :c:type:`double` を返します。 *pylong* は :c:type:`PyLongObject` "
417
405
"のインスタンスでなければなりません。"
418
406
419
- #: ../../c-api/long.rst:326
407
+ #: ../../c-api/long.rst:322
420
408
msgid ""
421
409
"Raise :exc:`OverflowError` if the value of *pylong* is out of range for a "
422
410
":c:type:`double`."
423
411
msgstr ""
424
412
"もし *pylong* の値が :c:type:`double` の範囲外であれば、 :exc:`OverflowError` を送出します。"
425
413
426
- #: ../../c-api/long.rst:329
414
+ #: ../../c-api/long.rst:325
427
415
msgid ""
428
416
"Returns ``-1.0`` on error. Use :c:func:`PyErr_Occurred` to disambiguate."
429
417
msgstr ""
430
418
"エラーが起きたときに ``-1.0`` を返します。\n"
431
419
"見分けを付けるためには :c:func:`PyErr_Occurred` を使ってください。"
432
420
433
- #: ../../c-api/long.rst:334
421
+ #: ../../c-api/long.rst:330
434
422
msgid ""
435
423
"Convert a Python integer *pylong* to a C :c:type:`void` pointer. If *pylong*"
436
424
" cannot be converted, an :exc:`OverflowError` will be raised. This is only "
@@ -441,7 +429,7 @@ msgstr ""
441
429
"を変換できなければ、 :exc:`OverflowError` を送出します。この関数は :c:func:`PyLong_FromVoidPtr` "
442
430
"で値を生成するときに使うような :c:type:`void` ポインタ型を生成できるだけです。"
443
431
444
- #: ../../c-api/long.rst:339
432
+ #: ../../c-api/long.rst:335
445
433
msgid ""
446
434
"Returns ``NULL`` on error. Use :c:func:`PyErr_Occurred` to disambiguate."
447
435
msgstr ""