@@ -10,9 +10,9 @@ msgid ""
10
10
msgstr ""
11
11
"Project-Id-Version : Python 2.7\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
- "POT-Creation-Date : 2018-06-24 13:38 +0900\n "
14
- "PO-Revision-Date : 2018-06-24 04:42 +0000\n "
15
- "
Last-Translator :
Arihiro TAKASE <[email protected] > \n"
13
+ "POT-Creation-Date : 2018-07-08 13:48 +0900\n "
14
+ "PO-Revision-Date : 2018-07-08 04:52 +0000\n "
15
+ "Last-Translator : cocoatomo \n "
16
16
"Language-Team : Japanese (http://www.transifex.com/python-doc/python-27/language/ja/)\n "
17
17
"MIME-Version : 1.0\n "
18
18
"Content-Type : text/plain; charset=UTF-8\n "
@@ -633,16 +633,16 @@ msgid ""
633
633
msgstr "タプルはイミュータブルなので、一度タプルが生成されたら、そのどの要素も新しい値に置き換えられません。リストはミュータブルなので、リストの要素はいつでも変更できます。イミュータブルな要素だけが辞書のキーとして使えるので、リストではなくタプルだけがキーとして使えます。"
634
634
635
635
#: ../../faq/design.rst:507
636
- msgid "How are lists implemented?"
637
- msgstr "リストはどのように実装されているのですか? "
636
+ msgid "How are lists implemented in CPython ?"
637
+ msgstr ""
638
638
639
639
#: ../../faq/design.rst:509
640
640
msgid ""
641
- "Python 's lists are really variable-length arrays, not Lisp-style linked "
641
+ "CPython 's lists are really variable-length arrays, not Lisp-style linked "
642
642
"lists. The implementation uses a contiguous array of references to other "
643
643
"objects, and keeps a pointer to this array and the array's length in a list "
644
644
"head structure."
645
- msgstr "Python のリストは真の可変長配列であり、Lisp スタイルの連結リストではありません。この実装は、他のオブジェクトへの参照の連続した配列を使い、リストの頭部構造にこの配列へのポインタと配列の長さを保持します。 "
645
+ msgstr ""
646
646
647
647
#: ../../faq/design.rst:513
648
648
msgid ""
@@ -659,16 +659,16 @@ msgid ""
659
659
msgstr "要素が追加または挿入されるとき、この参照の配列は大きさが変更されます。要素追加の繰り返しのパフォーマンスを上げるために、少し工夫されています。配列が大きくなるとき、次の何回かは実際に大きさを変更する必要がないように、いくらかの追加の領域が割り当てられます。"
660
660
661
661
#: ../../faq/design.rst:523
662
- msgid "How are dictionaries implemented?"
663
- msgstr "辞書はどのように実装されているのですか? "
662
+ msgid "How are dictionaries implemented in CPython ?"
663
+ msgstr ""
664
664
665
665
#: ../../faq/design.rst:525
666
666
msgid ""
667
- "Python 's dictionaries are implemented as resizable hash tables. Compared to "
668
- " B-trees, this gives better performance for lookup (the most common "
667
+ "CPython 's dictionaries are implemented as resizable hash tables. Compared "
668
+ "to B-trees, this gives better performance for lookup (the most common "
669
669
"operation by far) under most circumstances, and the implementation is "
670
670
"simpler."
671
- msgstr "Python の辞書は大きさを変更できるハッシュテーブルとして実装されています。\nB 木と比べて、ほとんどの条件下で (特に一般的な演算である) 探索のパフォーマンスが良いですし、実装も単純です。 "
671
+ msgstr ""
672
672
673
673
#: ../../faq/design.rst:529
674
674
msgid ""
0 commit comments