@@ -37,18 +37,17 @@ msgid ""
37
37
msgstr ":class:`bool` 형의 참값. ``True`` 에 대입할 수 없고 :exc:`SyntaxError` 를 일으킵니다."
38
38
39
39
#: ../../library/constants.rst:22
40
- #, fuzzy
41
40
msgid ""
42
41
"An object frequently used to represent the absence of a value, as when "
43
42
"default arguments are not passed to a function. Assignments to ``None`` "
44
43
"are illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance"
45
44
" of the :data:`~types.NoneType` type."
46
45
msgstr ""
47
- "``NoneType`` 형의 유일한 값. ``None`` 은 기본 인자가 함수에 전달되지 않을 때처럼, 값의 부재를 나타내는 데 "
48
- "자주 사용됩니다. ``None`` 에 대입할 수 없고 :exc:`SyntaxError` 를 일으킵니다."
46
+ "기본 인자가 함수에 전달되지 않을 때처럼, 값의 부재를 나타내는 데 자주 사용되는 객체. ``None`` 으로의 대입은 허락되지 "
47
+ "않고 :exc:`SyntaxError` 를 일으킵니다. ``None``\\ 은 :data:`~types.NoneType` 형의 유일한"
48
+ " 인스턴스입니다."
49
49
50
50
#: ../../library/constants.rst:30
51
- #, fuzzy
52
51
msgid ""
53
52
"A special value which should be returned by the binary special methods "
54
53
"(e.g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, "
@@ -60,13 +59,14 @@ msgid ""
60
59
":data:`!NotImplemented` is the sole instance of the "
61
60
":data:`types.NotImplementedType` type."
62
61
msgstr ""
63
- "연산이 다른 형에 대해 구현되지 않았음을 나타내기 위해, 이 항 특수 메서드(예를 들어, :meth:`__eq__`, "
64
- ":meth:`__lt__`, :meth:`__add__`, :meth:`__rsub__` 등)가 돌려줘야 하는 특별한 값; 같은 "
65
- "목적으로 증분 이 항 특수 메서드(예를 들어, :meth:`__imul__`, :meth:`__iand__` 등)가 반환할 수 "
66
- "있습니다. 불리언 문맥에서 평가해서는 안됩니다."
62
+ "연산이 다른 형에 대해 구현되지 않았음을 나타내기 위해, 이 항 특수 메서드(예를 들어, :meth:`~object.__eq__`,"
63
+ " :meth:`~object.__lt__`, :meth:`~object.__add__`, "
64
+ ":meth:`~object.__rsub__` 등)가 돌려줘야 하는 특별한 값; 같은 목적으로 증분 이 항 특수 메서드(예를 들어, "
65
+ ":meth:`~object.__imul__`, :meth:`~object.__iand__` 등)가 반환할 수 있습니다. 불리언 "
66
+ "문맥에서 평가해서는 안됩니다. :data:`!NotImplemented`\\ 는 "
67
+ ":data:`types.NotImplementedType` 형의 유일한 인스턴스입니다."
67
68
68
69
#: ../../library/constants.rst:40
69
- #, fuzzy
70
70
msgid ""
71
71
"When a binary (or in-place) method returns :data:`!NotImplemented` the "
72
72
"interpreter will try the reflected operation on the other type (or some "
@@ -76,10 +76,10 @@ msgid ""
76
76
" misleading error message or the :data:`!NotImplemented` value being "
77
77
"returned to Python code."
78
78
msgstr ""
79
- "이 항 (또는 증분) 메서드가 `` NotImplemented`` 를 반환하면 인터프리터는 다른 형(또는 연산자에 따라 다른 "
80
- "폴백)에서 뒤집힌 연산을 시도합니다. 모든 시도가 `` NotImplemented`` 를 반환하면, 인터프리터는 적절한 예외를 "
81
- "발생시킵니다. 부정확하게 `` NotImplemented`` 를 반환하면 오해의 소지가 있는 에러 메시지가 나오거나 파이썬 코드에 "
82
- "`` NotImplemented` ` 값이 반환됩니다."
79
+ "이 항 (또는 증분) 메서드가 :data:`! NotImplemented` 를 반환하면 인터프리터는 다른 형(또는 연산자에 따라 다른"
80
+ " 폴백)에서 뒤집힌 연산을 시도합니다. 모든 시도가 :data:`! NotImplemented` 를 반환하면, 인터프리터는 적절한 "
81
+ "예외를 발생시킵니다. 부정확하게 :data:`! NotImplemented` 를 반환하면 오해의 소지가 있는 에러 메시지가 나오거나 "
82
+ "파이썬 코드에 :data:`! NotImplemented` 값이 반환됩니다."
83
83
84
84
#: ../../library/constants.rst:47
85
85
msgid "See :ref:`implementing-the-arithmetic-operations` for examples."
@@ -92,29 +92,30 @@ msgid ""
92
92
"see :exc:`NotImplementedError` for details on correct usage of the "
93
93
"exception."
94
94
msgstr ""
95
+ "``NotImplementedError`` 와 ``NotImplemented`` 는 바꿔쓸 수 없습니다. 이 상수는 위에서 설명한 "
96
+ "대로만 사용해야 합니다; 이 예외의 올바른 사용법에 대한 자세한 내용은 :exc:`NotImplementedError`\\ 를 "
97
+ "참조하세요."
95
98
96
99
#: ../../library/constants.rst:56
97
- #, fuzzy
98
100
msgid ""
99
101
"Evaluating :data:`!NotImplemented` in a boolean context is deprecated. "
100
102
"While it currently evaluates as true, it will emit a "
101
103
":exc:`DeprecationWarning`. It will raise a :exc:`TypeError` in a future "
102
104
"version of Python."
103
105
msgstr ""
104
- "불리언 문맥에서 `` NotImplemented` `\\ 를 평가하는 것은 폐지되었습니다. 현재는 참으로 평가되지만, "
106
+ "불리언 문맥에서 :data:`! NotImplemented`\\ 를 평가하는 것은 폐지되었습니다. 현재는 참으로 평가되지만, "
105
107
":exc:`DeprecationWarning`\\ 를 방출합니다. 향후 버전의 파이썬에서는 :exc:`TypeError`\\ 를 "
106
108
"발생시킬 것입니다."
107
109
108
110
#: ../../library/constants.rst:65
109
- #, fuzzy
110
111
msgid ""
111
112
"The same as the ellipsis literal \" ``...``\" . Special value used mostly "
112
113
"in conjunction with extended slicing syntax for user-defined container "
113
114
"data types. ``Ellipsis`` is the sole instance of the "
114
115
":data:`types.EllipsisType` type."
115
116
msgstr ""
116
- "Ellipsis 리터럴 \" ``...``\" 와 같습니다. 주로 사용자 정의 컨테이너 데이터형에 대한 확장 슬라이스 문법과 함께 "
117
- "사용되는 특수 값."
117
+ "줄임표 리터럴 \" ``...``\" 와 같습니다. 주로 사용자 정의 컨테이너 데이터형에 대한 확장 슬라이스 문법과 함께 사용되는 "
118
+ "특수 값. ``Ellipsis`` \\ 는 :data:`types.EllipsisType` 형의 유일한 인스턴스입니다 ."
118
119
119
120
#: ../../library/constants.rst:72
120
121
msgid ""
@@ -181,21 +182,9 @@ msgstr ""
181
182
182
183
#: ../../library/constants.rst:62
183
184
msgid "..."
184
- msgstr ""
185
+ msgstr "... "
185
186
186
187
#: ../../library/constants.rst:62
187
188
msgid "ellipsis literal"
188
- msgstr ""
189
-
190
- #~ msgid ""
191
- #~ "``NotImplementedError`` and ``NotImplemented`` are"
192
- #~ " not interchangeable, even though they "
193
- #~ "have similar names and purposes. See "
194
- #~ ":exc:`NotImplementedError` for details on when"
195
- #~ " to use it."
196
- #~ msgstr ""
197
- #~ "``NotImplementedError`` 와 ``NotImplemented`` 는 "
198
- #~ "비슷한 이름과 목적이 있지만, 바꿔쓸 수 없습니다. "
199
- #~ "언제 사용하는지 자세히 알고 싶다면 "
200
- #~ ":exc:`NotImplementedError`\\를 보세요."
189
+ msgstr "줄임표 리터럴"
201
190
0 commit comments