|
8 | 8 | msgstr ""
|
9 | 9 | "Project-Id-Version: Python 3.7\n"
|
10 | 10 | "Report-Msgid-Bugs-To: \n"
|
11 |
| -"POT-Creation-Date: 2018-06-30 05:56+0900\n" |
| 11 | +"POT-Creation-Date: 2018-07-26 08:41+0900\n" |
12 | 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 | 13 | "Last-Translator: Naoki INADA <songofacandy@gmail.com>, 2017\n"
|
14 | 14 | "Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
|
@@ -609,18 +609,15 @@ msgstr ""
|
609 | 609 | #: ../../tutorial/classes.rst:389
|
610 | 610 | msgid ""
|
611 | 611 | "If you still don't understand how methods work, a look at the implementation"
|
612 |
| -" can perhaps clarify matters. When an instance attribute is referenced that" |
613 |
| -" isn't a data attribute, its class is searched. If the name denotes a valid" |
614 |
| -" class attribute that is a function object, a method object is created by " |
| 612 | +" can perhaps clarify matters. When a non-data attribute of an instance is " |
| 613 | +"referenced, the instance's class is searched. If the name denotes a valid " |
| 614 | +"class attribute that is a function object, a method object is created by " |
615 | 615 | "packing (pointers to) the instance object and the function object just found"
|
616 | 616 | " together in an abstract object: this is the method object. When the method"
|
617 | 617 | " object is called with an argument list, a new argument list is constructed "
|
618 | 618 | "from the instance object and the argument list, and the function object is "
|
619 | 619 | "called with this new argument list."
|
620 | 620 | msgstr ""
|
621 |
| -"もしまだメソッドの動作を理解できなければ、一度実装を見てみると事情がよく分かるかもしれません。データ属性ではないインスタンス属性が参照された時は、そのクラスが検索されます。その名前が有効なクラス属性を表している関数オブジェクトなら、インスタンスオブジェクトと見つかった関数オブジェクト" |
622 |
| -" (へのポインタ) " |
623 |
| -"を抽象オブジェクト、すなわちメソッドオブジェクトにパックして作成します。メソッドオブジェクトが引数リストと共に呼び出されるとき、インスタンスオブジェクトと渡された引数リストから新しい引数リストを作成して、元の関数オブジェクトを新しい引数リストで呼び出します。" |
624 | 621 |
|
625 | 622 | #: ../../tutorial/classes.rst:403
|
626 | 623 | msgid "Class and Instance Variables"
|
|
0 commit comments