|
9 | 9 | msgstr ""
|
10 | 10 | "Project-Id-Version: Python 2.7\n"
|
11 | 11 | "Report-Msgid-Bugs-To: \n"
|
12 |
| -"POT-Creation-Date: 2018-01-21 01:52+0900\n" |
13 |
| -"PO-Revision-Date: 2018-06-21 15:16+0000\n" |
| 12 | +"POT-Creation-Date: 2018-07-26 13:58+0900\n" |
| 13 | +"PO-Revision-Date: 2018-07-26 05:09+0000\n" |
14 | 14 | "Last-Translator: tomo🐧\n"
|
15 | 15 | "Language-Team: Japanese (http://www.transifex.com/python-doc/python-27/language/ja/)\n"
|
16 | 16 | "MIME-Version: 1.0\n"
|
@@ -433,15 +433,15 @@ msgstr "もう答は想像できているかもしれませんね。メソッド
|
433 | 433 | #: ../../tutorial/classes.rst:330
|
434 | 434 | msgid ""
|
435 | 435 | "If you still don't understand how methods work, a look at the implementation"
|
436 |
| -" can perhaps clarify matters. When an instance attribute is referenced that" |
437 |
| -" isn't a data attribute, its class is searched. If the name denotes a valid" |
438 |
| -" class attribute that is a function object, a method object is created by " |
| 436 | +" can perhaps clarify matters. When a non-data attribute of an instance is " |
| 437 | +"referenced, the instance's class is searched. If the name denotes a valid " |
| 438 | +"class attribute that is a function object, a method object is created by " |
439 | 439 | "packing (pointers to) the instance object and the function object just found"
|
440 | 440 | " together in an abstract object: this is the method object. When the method"
|
441 | 441 | " object is called with an argument list, a new argument list is constructed "
|
442 | 442 | "from the instance object and the argument list, and the function object is "
|
443 | 443 | "called with this new argument list."
|
444 |
| -msgstr "もしまだメソッドの動作を理解できなければ、一度実装を見てみると事情がよく分かるかもしれません。データ属性ではないインスタンス属性が参照された時は、そのクラスが検索されます。その名前が有効なクラス属性を表している関数オブジェクトなら、インスタンスオブジェクトと見つかった関数オブジェクト (へのポインタ) を抽象オブジェクト、すなわちメソッドオブジェクトにパックして作成します。メソッドオブジェクトが引数リストと共に呼び出されるとき、インスタンスオブジェクトと渡された引数リストから新しい引数リストを作成して、元の関数オブジェクトを新しい引数リストで呼び出します。" |
| 444 | +msgstr "" |
445 | 445 |
|
446 | 446 | #: ../../tutorial/classes.rst:344
|
447 | 447 | msgid "Class and Instance Variables"
|
|
0 commit comments