@@ -44,19 +44,18 @@ msgstr ""
44
44
"전체에서 일관됩니다."
45
45
46
46
#: ../../c-api/complex.rst:26
47
- #, fuzzy
48
47
msgid ""
49
48
"The C structure which corresponds to the value portion of a Python "
50
49
"complex number object. Most of the functions for dealing with complex "
51
50
"number objects use structures of this type as input or output values, as "
52
51
"appropriate."
53
52
msgstr ""
54
53
"파이썬 복소수 객체의 값 부분에 해당하는 C 구조체. 복소수 객체를 다루는 대부분 함수는 이 형의 구조체를 입력 또는 출력값으로 "
55
- "적절하게 사용합니다. 다음과 같이 정의됩니다:: "
54
+ "적절하게 사용합니다."
56
55
57
56
#: ../../c-api/complex.rst:33
58
57
msgid "The structure is defined as::"
59
- msgstr ""
58
+ msgstr "구조체는 다음과 같이 정의됩니다:: "
60
59
61
60
#: ../../c-api/complex.rst:35
62
61
#, python-brace-format
@@ -66,6 +65,10 @@ msgid ""
66
65
" double imag;\n"
67
66
"} Py_complex;"
68
67
msgstr ""
68
+ "typedef struct {\n"
69
+ " double real;\n"
70
+ " double imag;\n"
71
+ "} Py_complex;"
69
72
70
73
#: ../../c-api/complex.rst:43
71
74
msgid ""
@@ -80,11 +83,10 @@ msgid ""
80
83
msgstr "C :c:type:`Py_complex` 표현을 사용하여 두 복소수의 차이를 반환합니다."
81
84
82
85
#: ../../c-api/complex.rst:55
83
- #, fuzzy
84
86
msgid ""
85
87
"Return the negation of the complex number *num*, using the C "
86
88
":c:type:`Py_complex` representation."
87
- msgstr "C :c:type:`Py_complex` 표현을 사용하여 복소수 *complex *\\ 의 음의 값을 반환합니다."
89
+ msgstr "C :c:type:`Py_complex` 표현을 사용하여 복소수 *num *\\ 의 음의 값을 반환합니다."
88
90
89
91
#: ../../c-api/complex.rst:61
90
92
msgid ""
@@ -99,13 +101,12 @@ msgid ""
99
101
msgstr "C :c:type:`Py_complex` 표현을 사용하여 두 복소수의 몫을 반환합니다."
100
102
101
103
#: ../../c-api/complex.rst:70
102
- #, fuzzy
103
104
msgid ""
104
105
"If *divisor* is null, this method returns zero and sets :c:data:`errno` "
105
106
"to :c:macro:`!EDOM`."
106
107
msgstr ""
107
108
"*divisor*\\ 가 null이면, 이 메서드는 0을 반환하고, :c:data:`errno`\\ 를 "
108
- ":c:data:` EDOM`\\ 으로 설정합니다."
109
+ ":c:macro:`! EDOM`\\ 으로 설정합니다."
109
110
110
111
#: ../../c-api/complex.rst:76
111
112
msgid ""
@@ -114,13 +115,12 @@ msgid ""
114
115
msgstr "C :c:type:`Py_complex` 표현을 사용하여 *num*\\ 의 *exp* 거듭제곱을 반환합니다."
115
116
116
117
#: ../../c-api/complex.rst:79
117
- #, fuzzy
118
118
msgid ""
119
119
"If *num* is null and *exp* is not a positive real number, this method "
120
120
"returns zero and sets :c:data:`errno` to :c:macro:`!EDOM`."
121
121
msgstr ""
122
122
"*num*\\ 이 null이고 *exp*\\ 가 양의 실수가 아니면, 이 메서드는 0을 반환하고 :c:data:`errno`\\ 를 "
123
- ":c:data:` EDOM`\\ 으로 설정합니다."
123
+ ":c:macro:`! EDOM`\\ 으로 설정합니다."
124
124
125
125
#: ../../c-api/complex.rst:84
126
126
msgid "Complex Numbers as Python Objects"
@@ -158,74 +158,70 @@ msgstr ""
158
158
"아니면 참을 반환합니다. 이 함수는 항상 성공합니다."
159
159
160
160
#: ../../c-api/complex.rst:112
161
- #, fuzzy
162
161
msgid ""
163
162
"Create a new Python complex number object from a C :c:type:`Py_complex` "
164
163
"value. Return ``NULL`` with an exception set on error."
165
- msgstr "C :c:type:`Py_complex` 값으로 새로운 파이썬 복소수 객체를 만듭니다."
164
+ msgstr ""
165
+ "C :c:type:`Py_complex` 값으로 새로운 파이썬 복소수 객체를 만듭니다. 에러면 예외를 설정하고 ``NULL``\\ 을"
166
+ " 반환합니다."
166
167
167
168
#: ../../c-api/complex.rst:118
168
- #, fuzzy
169
169
msgid ""
170
170
"Return a new :c:type:`PyComplexObject` object from *real* and *imag*. "
171
171
"Return ``NULL`` with an exception set on error."
172
- msgstr "*real* 및 *imag*\\ 로 새로운 :c:type:`PyComplexObject` 객체를 반환합니다."
172
+ msgstr ""
173
+ "*real* 및 *imag*\\ 로 새로운 :c:type:`PyComplexObject` 객체를 반환합니다. 에러면 예외를 설정하고 "
174
+ "``NULL``\\ 을 반환합니다."
173
175
174
176
#: ../../c-api/complex.rst:124
175
- #, fuzzy
176
177
msgid "Return the real part of *op* as a C :c:expr:`double`."
177
- msgstr "*op*\\ 의 실수부를 C :c:type :`double`\\ 로 반환합니다."
178
+ msgstr "*op*\\ 의 실수부를 C :c:expr :`double`\\ 로 반환합니다."
178
179
179
180
#: ../../c-api/complex.rst:126
180
- #, fuzzy
181
181
msgid ""
182
182
"If *op* is not a Python complex number object but has a "
183
183
":meth:`~object.__complex__` method, this method will first be called to "
184
184
"convert *op* to a Python complex number object. If :meth:`!__complex__` "
185
185
"is not defined then it falls back to call :c:func:`PyFloat_AsDouble` and "
186
186
"returns its result."
187
187
msgstr ""
188
- "*op*\\ 가 파이썬 복소수 객체가 아니지만 :meth:`__complex__` 메서드가 있으면, 이 메서드는 먼저 *op*\\ 를 "
189
- "파이썬 복소수 객체로 변환하도록 그 메서드를 호출합니다. ``__complex __()``\\ 가 정의되지 않았으면 "
190
- ":meth:`__float__`\\ 로 대체합니다. ``__float__()``\\ 가 정의되지 않았으면 "
191
- ":meth:`__index__`\\ 로 대체합니다. 실패하면, 이 메서드는 ``-1.0``\\ 를 실숫값으로 반환합니다."
188
+ "*op*\\ 가 파이썬 복소수 객체가 아니지만 :meth:`~object.__complex__` 메서드가 있으면, 이 메서드는 먼저 "
189
+ "*op*\\ 를 파이썬 복소수 객체로 변환하도록 그 메서드를 호출합니다. :meth:`!__complex__`\\ 가 정의되지 않았으면"
190
+ " :c:func:`PyFloat_AsDouble`\\ 을 호출하는 것으로 대체하고 그 결과를 반환합니다."
192
191
193
192
#: ../../c-api/complex.rst:132 ../../c-api/complex.rst:148
194
193
msgid ""
195
194
"Upon failure, this method returns ``-1.0`` with an exception set, so one "
196
195
"should call :c:func:`PyErr_Occurred` to check for errors."
197
196
msgstr ""
197
+ "실패하면, 이 메서드는 예외를 설정하고 ``-1.0``\\ 을 반환합니다. :c:func:`PyErr_Occurred`\\ 를 호출하여"
198
+ " 에러를 확인해야 합니다."
198
199
199
200
#: ../../c-api/complex.rst:135 ../../c-api/complex.rst:151
200
- #, fuzzy
201
201
msgid "Use :meth:`~object.__complex__` if available."
202
- msgstr "사용할 수 있다면 :meth:`__index__ `\\ 를 사용합니다."
202
+ msgstr "사용할 수 있다면 :meth:`~object.__complex__ `\\ 를 사용합니다."
203
203
204
204
#: ../../c-api/complex.rst:140
205
- #, fuzzy
206
205
msgid "Return the imaginary part of *op* as a C :c:expr:`double`."
207
- msgstr "*op*\\ 의 허수부를 C :c:type :`double`\\ 로 반환합니다."
206
+ msgstr "*op*\\ 의 허수부를 C :c:expr :`double`\\ 로 반환합니다."
208
207
209
208
#: ../../c-api/complex.rst:142
210
- #, fuzzy
211
209
msgid ""
212
210
"If *op* is not a Python complex number object but has a "
213
211
":meth:`~object.__complex__` method, this method will first be called to "
214
212
"convert *op* to a Python complex number object. If :meth:`!__complex__` "
215
213
"is not defined then it falls back to call :c:func:`PyFloat_AsDouble` and "
216
214
"returns ``0.0`` on success."
217
215
msgstr ""
218
- "*op*\\ 가 파이썬 복소수 객체가 아니지만 :meth:`__complex__` 메서드가 있으면, 이 메서드는 먼저 *op*\\ 를 "
219
- "파이썬 복소수 객체로 변환하도록 그 메서드를 호출합니다. ``__complex __()``\\ 가 정의되지 않았으면 "
220
- ":meth:`__float__`\\ 로 대체합니다. ``__float__()``\\ 가 정의되지 않았으면 "
221
- ":meth:`__index__`\\ 로 대체합니다. 실패하면, 이 메서드는 ``-1.0``\\ 를 실숫값으로 반환합니다."
216
+ "*op*\\ 가 파이썬 복소수 객체가 아니지만 :meth:`~object.__complex__` 메서드가 있으면, 이 메서드는 먼저 "
217
+ "*op*\\ 를 파이썬 복소수 객체로 변환하도록 그 메서드를 호출합니다. :meth:`!__complex__`\\ 가 정의되지 않았으면"
218
+ " :c:func:`PyFloat_AsDouble`\\ 을 호출하는 것으로 대체하고 성공할 때 ``0.0``\\ 을 반환합니다."
222
219
223
220
#: ../../c-api/complex.rst:156
224
221
msgid "Return the :c:type:`Py_complex` value of the complex number *op*."
225
222
msgstr "복소수 *op*\\ 의 :c:type:`Py_complex` 값을 반환합니다."
226
223
227
224
#: ../../c-api/complex.rst:158
228
- #, fuzzy
229
225
msgid ""
230
226
"If *op* is not a Python complex number object but has a "
231
227
":meth:`~object.__complex__` method, this method will first be called to "
@@ -234,29 +230,30 @@ msgid ""
234
230
":meth:`!__float__` is not defined then it falls back to "
235
231
":meth:`~object.__index__`."
236
232
msgstr ""
237
- "*op*\\ 가 파이썬 복소수 객체가 아니지만 :meth:`__complex__` 메서드가 있으면, 이 메서드는 먼저 *op* \\ 를 "
238
- "파이썬 복소수 객체로 변환하도록 그 메서드를 호출합니다. ``__complex __()`` \\ 가 정의되지 않았으면 "
239
- ":meth:`__float__`\\ 로 대체합니다. `` __float__()` `\\ 가 정의되지 않았으면 "
240
- ":meth:`__index__`\\ 로 대체합니다. 실패하면, 이 메서드는 ``-1.0`` \\ 를 실숫값으로 반환합니다 ."
233
+ "*op*\\ 가 파이썬 복소수 객체가 아니지만 :meth:`~object. __complex__` 메서드가 있으면, 이 메서드는 먼저 "
234
+ "*op* \\ 를 파이썬 복소수 객체로 변환하도록 그 메서드를 호출합니다. :meth:`!__complex__` \\ 가 정의되지 않았으면"
235
+ " :meth:`~object. __float__`\\ 로 대체합니다. :meth:`! __float__`\\ 가 정의되지 않았으면 "
236
+ ":meth:`~object. __index__`\\ 로 대체합니다."
241
237
242
238
#: ../../c-api/complex.rst:164
243
239
msgid ""
244
240
"Upon failure, this method returns :c:type:`Py_complex` with "
245
241
":c:member:`~Py_complex.real` set to ``-1.0`` and with an exception set, "
246
242
"so one should call :c:func:`PyErr_Occurred` to check for errors."
247
243
msgstr ""
244
+ "실패하면, 이 메서드는 예외를 설정하고 :c:member:`~Py_complex.real`\\ 을 ``-1.0``\\ 으로 설정한 "
245
+ ":c:type:`Py_complex`\\ 를 반환합니다. :c:func:`PyErr_Occurred`\\ 를 호출하여 에러를 확인해야 "
246
+ "합니다."
248
247
249
248
#: ../../c-api/complex.rst:168
250
- #, fuzzy
251
249
msgid "Use :meth:`~object.__index__` if available."
252
- msgstr "사용할 수 있다면 :meth:`__index__`\\ 를 사용합니다."
250
+ msgstr "사용할 수 있다면 :meth:`~object. __index__`\\ 를 사용합니다."
253
251
254
252
#: ../../c-api/complex.rst:8
255
253
msgid "object"
256
- msgstr ""
254
+ msgstr "객체 "
257
255
258
256
#: ../../c-api/complex.rst:8
259
- #, fuzzy
260
257
msgid "complex number"
261
- msgstr "복소수 객체 "
258
+ msgstr "복소수"
262
259
0 commit comments