@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version :Python 3.8\n "
1414"Report-Msgid-Bugs-To :\n "
15- "POT-Creation-Date :2020-02-09 12:40 +0000\n "
15+ "POT-Creation-Date :2020-07-29 14:42 +0000\n "
1616"PO-Revision-Date :2020-05-30 11:54+0000\n "
1717"Last-Translator :Tetsuo Koyama <tkoyama010@gmail.com>, 2020\n "
1818"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -394,17 +394,17 @@ msgid ""
394394"practice::"
395395msgstr "インタプリタを起動すると、この関数デスクリプタが実際にどうはたらくかを見られます::"
396396
397- #: ../../howto/descriptor.rst:326
397+ #: ../../howto/descriptor.rst:324
398398msgid "Static Methods and Class Methods"
399399msgstr "静的メソッドとクラスメソッド"
400400
401- #: ../../howto/descriptor.rst:328
401+ #: ../../howto/descriptor.rst:326
402402msgid ""
403403"Non-data descriptors provide a simple mechanism for variations on the usual "
404404"patterns of binding functions into methods."
405405msgstr "非データデスクリプタは、関数をメソッドに束縛する、各種の一般的なパターンに、単純な機構を提供します。"
406406
407- #: ../../howto/descriptor.rst:331
407+ #: ../../howto/descriptor.rst:329
408408msgid ""
409409"To recap, functions have a :meth:`__get__` method so that they can be "
410410"converted to a method when accessed as attributes. The non-data descriptor "
@@ -415,52 +415,52 @@ msgstr ""
415415" ``obj.f(*args)`` の呼び出しを ``f(obj, *args)`` に変換します。 ``klass.f(*args)`` を呼び出すと"
416416" ``f(*args)`` になります。"
417417
418- #: ../../howto/descriptor.rst:336
418+ #: ../../howto/descriptor.rst:334
419419msgid "This chart summarizes the binding and its two most useful variants:"
420420msgstr "このチャートは、束縛と、その 2 つの異なる便利な形をまとめています:"
421421
422- #: ../../howto/descriptor.rst:339
422+ #: ../../howto/descriptor.rst:337
423423msgid "Transformation"
424424msgstr "変換"
425425
426- #: ../../howto/descriptor.rst:339
426+ #: ../../howto/descriptor.rst:337
427427msgid "Called from an Object"
428428msgstr "オブジェクトから呼び出される"
429429
430- #: ../../howto/descriptor.rst:339
430+ #: ../../howto/descriptor.rst:337
431431msgid "Called from a Class"
432432msgstr "クラスから呼び出される"
433433
434- #: ../../howto/descriptor.rst:342
434+ #: ../../howto/descriptor.rst:340
435435msgid "function"
436436msgstr "function"
437437
438- #: ../../howto/descriptor.rst:342
438+ #: ../../howto/descriptor.rst:340
439439msgid "f(obj,\\ *args)"
440440msgstr "f(obj,\\ *args)"
441441
442- #: ../../howto/descriptor.rst:342 ../../howto/descriptor.rst:344
443- #: ../../howto/descriptor.rst:344
442+ #: ../../howto/descriptor.rst:340 ../../howto/descriptor.rst:342
443+ #: ../../howto/descriptor.rst:342
444444msgid "f(\\ *args)"
445445msgstr "f(\\ *args)"
446446
447- #: ../../howto/descriptor.rst:344
447+ #: ../../howto/descriptor.rst:342
448448msgid "staticmethod"
449449msgstr "静的メソッド"
450450
451- #: ../../howto/descriptor.rst:346
451+ #: ../../howto/descriptor.rst:344
452452msgid "classmethod"
453453msgstr "クラスメソッド"
454454
455- #: ../../howto/descriptor.rst:346
455+ #: ../../howto/descriptor.rst:344
456456msgid "f(type(obj),\\ *args)"
457457msgstr "f(type(obj),\\ *args)"
458458
459- #: ../../howto/descriptor.rst:346
459+ #: ../../howto/descriptor.rst:344
460460msgid "f(klass,\\ *args)"
461461msgstr "f(klass,\\ *args)"
462462
463- #: ../../howto/descriptor.rst:349
463+ #: ../../howto/descriptor.rst:347
464464msgid ""
465465"Static methods return the underlying function without changes. Calling "
466466"either ``c.f`` or ``C.f`` is the equivalent of a direct lookup into "
@@ -472,13 +472,13 @@ msgstr ""
472472"\" f\" )`` や ``object.__getattribute__(C,\" f\" )`` "
473473"を直接探索するのと同じです。結果として、関数はオブジェクトとクラスから同じようにアクセスできます。"
474474
475- #: ../../howto/descriptor.rst:355
475+ #: ../../howto/descriptor.rst:353
476476msgid ""
477477"Good candidates for static methods are methods that do not reference the "
478478"``self`` variable."
479479msgstr "静的メソッドにすると良いのは、 ``self`` 変数への参照を持たないメソッドです。"
480480
481- #: ../../howto/descriptor.rst:358
481+ #: ../../howto/descriptor.rst:356
482482msgid ""
483483"For instance, a statistics package may include a container class for "
484484"experimental data. The class provides normal methods for computing the "
@@ -494,27 +494,27 @@ msgstr ""
494494"は統計上の便利な変換ルーチンですが、特定のデータセットに直接には依存しません。これは、オブジェクトからでもクラスからでも呼び出せます: "
495495"``s.erf(1.5) --> .9332`` または ``Sample.erf(1.5) --> .9332`` 。"
496496
497- #: ../../howto/descriptor.rst:367
497+ #: ../../howto/descriptor.rst:365
498498msgid ""
499499"Since staticmethods return the underlying function with no changes, the "
500500"example calls are unexciting::"
501501msgstr "静的メソッドは下にある関数をそのまま返すので、呼び出しの例は面白くありません::"
502502
503- #: ../../howto/descriptor.rst:380
503+ #: ../../howto/descriptor.rst:378
504504msgid ""
505505"Using the non-data descriptor protocol, a pure Python version of "
506506":func:`staticmethod` would look like this::"
507507msgstr "非データデスクリプタプロトコルを使うと、pure Python 版の :func:`staticmethod` は以下のようになります::"
508508
509- #: ../../howto/descriptor.rst:392
509+ #: ../../howto/descriptor.rst:390
510510msgid ""
511511"Unlike static methods, class methods prepend the class reference to the "
512512"argument list before calling the function. This format is the same for "
513513"whether the caller is an object or a class::"
514514msgstr ""
515515"静的メソッドとは違って、クラスメソッドは関数を呼び出す前にクラス参照を引数リストの先頭に加えます。このフォーマットは、呼び出し元がオブジェクトでもクラスでも同じです::"
516516
517- #: ../../howto/descriptor.rst:407
517+ #: ../../howto/descriptor.rst:405
518518msgid ""
519519"This behavior is useful whenever the function only needs to have a class "
520520"reference and does not care about any underlying data. One use for "
@@ -526,11 +526,11 @@ msgstr ""
526526" 2.3 では、クラスメソッド :func:`dict.fromkeys` は新しい辞書をキーのリストから生成します。等価な pure Python "
527527"版は::"
528528
529- #: ../../howto/descriptor.rst:423
529+ #: ../../howto/descriptor.rst:421
530530msgid "Now a new dictionary of unique keys can be constructed like this::"
531531msgstr "これで一意なキーを持つ新しい辞書が以下のように構成できます::"
532532
533- #: ../../howto/descriptor.rst:428
533+ #: ../../howto/descriptor.rst:426
534534msgid ""
535535"Using the non-data descriptor protocol, a pure Python version of "
536536":func:`classmethod` would look like this::"