File tree 8 files changed +24
-16
lines changed
8 files changed +24
-16
lines changed Original file line number Diff line number Diff line change 1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.12\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2023-12-22 14:13 +0000\n "
15
+ "POT-Creation-Date : 2024-01-12 14:14 +0000\n "
16
16
"PO-Revision-Date : 2021-06-28 00:48+0000\n "
17
17
"Last-Translator : yaakiyu, 2023\n "
18
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
Original file line number Diff line number Diff line change 1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -15,7 +15,7 @@ msgid ""
15
15
msgstr ""
16
16
"Project-Id-Version : Python 3.12\n "
17
17
"Report-Msgid-Bugs-To : \n "
18
- "POT-Creation-Date : 2023-12-22 14:13 +0000\n "
18
+ "POT-Creation-Date : 2024-01-12 14:14 +0000\n "
19
19
"PO-Revision-Date : 2021-06-28 00:49+0000\n "
20
20
"Last-Translator : yaakiyu, 2023\n "
21
21
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
Original file line number Diff line number Diff line change 1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.12\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2023-12-22 14:13 +0000\n "
15
+ "POT-Creation-Date : 2024-01-12 14:14 +0000\n "
16
16
"PO-Revision-Date : 2021-06-28 00:49+0000\n "
17
17
"Last-Translator : Arihiro TAKASE, 2023\n "
18
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
Original file line number Diff line number Diff line change 1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.12\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2023-12-22 14:13 +0000\n "
15
+ "POT-Creation-Date : 2024-01-12 14:14 +0000\n "
16
16
"PO-Revision-Date : 2021-06-28 00:47+0000\n "
17
17
"Last-Translator : Norifumi Yamamura, 2023\n "
18
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
Original file line number Diff line number Diff line change 9
9
# Mikami Akiko, 2021
10
10
# 菊池 健志, 2023
11
11
# Arihiro TAKASE, 2023
12
- # TENMYO Masakazu, 2023
12
+ # TENMYO Masakazu, 2024
13
13
#
14
14
#, fuzzy
15
15
msgid ""
@@ -18,7 +18,7 @@ msgstr ""
18
18
"Report-Msgid-Bugs-To : \n "
19
19
"POT-Creation-Date : 2024-01-12 14:14+0000\n "
20
20
"PO-Revision-Date : 2021-06-28 00:52+0000\n "
21
- "Last-Translator : TENMYO Masakazu, 2023 \n "
21
+ "Last-Translator : TENMYO Masakazu, 2024 \n "
22
22
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
23
23
"ja/)\n "
24
24
"MIME-Version : 1.0\n "
@@ -824,6 +824,14 @@ msgid ""
824
824
"values, this means that dictionaries take constant time -- *O*\\ (1), in Big-"
825
825
"O notation -- to retrieve a key."
826
826
msgstr ""
827
+ "辞書は、辞書に保存されているそれぞれのキーに対応するハッシュコードを :func:"
828
+ "`hash` ビルトイン関数で計算することで機能します。このハッシュコードはキーやプ"
829
+ "ロセスごとのシードによって大きく変化します。例えば、 ``'Python'`` のハッシュ"
830
+ "値は ``-539294296`` ですが、ビットが一つ違うだけの文字列 ``'python'`` のハッ"
831
+ "シュ値は ``1142331976`` です。そしてこのハッシュコードは、値が保存される内部"
832
+ "配列での位置を計算するために使われます。保存しているキーのハッシュ値が全て異"
833
+ "なるとすれば、一定の時間 − Big-O 記法では *O*\\ (1) − でキーを検索できること"
834
+ "になります。"
827
835
828
836
#: ../../faq/design.rst:458
829
837
msgid "Why must dictionary keys be immutable?"
Original file line number Diff line number Diff line change 1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -13,7 +13,7 @@ msgid ""
13
13
msgstr ""
14
14
"Project-Id-Version : Python 3.12\n "
15
15
"Report-Msgid-Bugs-To : \n "
16
- "POT-Creation-Date : 2023-12-22 14:13 +0000\n "
16
+ "POT-Creation-Date : 2024-01-12 14:14 +0000\n "
17
17
"PO-Revision-Date : 2021-06-28 01:03+0000\n "
18
18
"
Last-Translator :
Yusuke Miyazaki <[email protected] >, 2023\n "
19
19
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
Original file line number Diff line number Diff line change 1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.12\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2023-12-22 14:13 +0000\n "
14
+ "POT-Creation-Date : 2024-01-12 14:14 +0000\n "
15
15
"PO-Revision-Date : 2021-06-28 01:17+0000\n "
16
16
"Last-Translator : tomo, 2021\n "
17
17
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
Original file line number Diff line number Diff line change 1
1
# SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2023 , Python Software Foundation
2
+ # Copyright (C) 2001-2024 , Python Software Foundation
3
3
# This file is distributed under the same license as the Python package.
4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
@@ -16,7 +16,7 @@ msgid ""
16
16
msgstr ""
17
17
"Project-Id-Version : Python 3.12\n "
18
18
"Report-Msgid-Bugs-To : \n "
19
- "POT-Creation-Date : 2023-12-22 14:13 +0000\n "
19
+ "POT-Creation-Date : 2024-01-12 14:14 +0000\n "
20
20
"PO-Revision-Date : 2021-06-28 01:50+0000\n "
21
21
"Last-Translator : souma987, 2023\n "
22
22
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
You can’t perform that action at this time.
0 commit comments