@@ -27,7 +27,6 @@ msgid ""
27
27
msgstr "이 객체 사용에 대한 자세한 정보는 :ref:`using-capsules`\\ 를 참조하십시오."
28
28
29
29
#: ../../c-api/capsule.rst:17
30
- #, fuzzy
31
30
msgid ""
32
31
"This subtype of :c:type:`PyObject` represents an opaque value, useful for"
33
32
" C extension modules who need to pass an opaque value (as a "
@@ -37,7 +36,7 @@ msgid ""
37
36
" APIs defined in dynamically loaded modules."
38
37
msgstr ""
39
38
"이 :c:type:`PyObject`\\ 의 서브 형은 불투명한 값을 나타내며, 파이썬 코드를 통해 다른 C 코드로 불투명한 "
40
- "값(:c:type :`void*` 포인터로)을 전달해야 하는 C 확장 모듈에 유용합니다. 이것은 한 모듈에서 정의된 C 함수 포인터를"
39
+ "값(:c:expr :`void*` 포인터로)을 전달해야 하는 C 확장 모듈에 유용합니다. 이것은 한 모듈에서 정의된 C 함수 포인터를"
41
40
" 다른 모듈에서 사용할 수 있게 만드는 데 종종 사용되므로, 일반 임포트 메커니즘을 사용하여 동적으로 로드된 모듈에 정의된 C "
42
41
"API에 액세스할 수 있습니다."
43
42
@@ -47,7 +46,7 @@ msgstr "캡슐에 대한 파괴자(destructor) 콜백 형. 이렇게 정의됩
47
46
48
47
#: ../../c-api/capsule.rst:29
49
48
msgid "typedef void (*PyCapsule_Destructor)(PyObject *);"
50
- msgstr ""
49
+ msgstr "typedef void (*PyCapsule_Destructor)(PyObject *); "
51
50
52
51
#: ../../c-api/capsule.rst:31
53
52
msgid ""
@@ -104,15 +103,14 @@ msgid ""
104
103
msgstr "캡슐에 저장된 *pointer*\\ 를 가져옵니다. 실패하면, 예외를 설정하고 ``NULL``\\ 을 반환합니다."
105
104
106
105
#: ../../c-api/capsule.rst:65
107
- #, fuzzy
108
106
msgid ""
109
107
"The *name* parameter must compare exactly to the name stored in the "
110
108
"capsule. If the name stored in the capsule is ``NULL``, the *name* passed"
111
109
" in must also be ``NULL``. Python uses the C function :c:func:`!strcmp` "
112
110
"to compare capsule names."
113
111
msgstr ""
114
112
"*name* 매개 변수는 캡슐에 저장된 이름과 정확하게 비교되어야 합니다. 캡슐에 저장된 이름이 ``NULL``\\ 이면, 전달된 "
115
- "*name*\\ 도 ``NULL`` 이어야 합니다. 파이썬은 C 함수 :c:func:`strcmp`\\ 를 사용하여 캡슐 이름을 "
113
+ "*name*\\ 도 ``NULL`` 이어야 합니다. 파이썬은 C 함수 :c:func:`! strcmp`\\ 를 사용하여 캡슐 이름을 "
116
114
"비교합니다."
117
115
118
116
#: ../../c-api/capsule.rst:73
@@ -161,18 +159,14 @@ msgstr ""
161
159
":c:func:`PyCapsule_IsValid` 나 :c:func:`PyErr_Occurred`\\ 를 사용하십시오."
162
160
163
161
#: ../../c-api/capsule.rst:103
164
- #, fuzzy
165
162
msgid ""
166
163
"Import a pointer to a C object from a capsule attribute in a module. The"
167
164
" *name* parameter should specify the full name to the attribute, as in "
168
165
"``module.attribute``. The *name* stored in the capsule must match this "
169
166
"string exactly."
170
167
msgstr ""
171
168
"모듈의 캡슐 어트리뷰트에서 C 객체에 대한 포인터를 임포트 합니다. *name* 매개 변수는 ``module.attribute`` "
172
- "처럼 어트리뷰트의 전체 이름을 지정해야 합니다. 캡슐에 저장된 *name*\\ 은, 이 문자열과 정확히 일치해야 합니다. "
173
- "*no_block*\\ 이 참이면, 블록하지 않고 모듈을 임포트 합니다 "
174
- "(:c:func:`PyImport_ImportModuleNoBlock`\\ 를 사용해서). *no_block*\\ 이 거짓이면, 모듈을"
175
- " 평범하게 임포트 합니다 (:c:func:`PyImport_ImportModule`\\ 을 사용해서)."
169
+ "처럼 어트리뷰트의 전체 이름을 지정해야 합니다. 캡슐에 저장된 *name*\\ 은, 이 문자열과 정확히 일치해야 합니다."
176
170
177
171
#: ../../c-api/capsule.rst:108
178
172
msgid ""
@@ -182,7 +176,7 @@ msgstr "성공하면 캡슐의 내부 *pointer*\\를 반환합니다. 실패하
182
176
183
177
#: ../../c-api/capsule.rst:111
184
178
msgid "*no_block* has no effect anymore."
185
- msgstr ""
179
+ msgstr "*no_block* \\ 은 더는 효과가 없습니다. "
186
180
187
181
#: ../../c-api/capsule.rst:117
188
182
msgid ""
@@ -198,14 +192,13 @@ msgstr ""
198
192
":c:func:`PyCapsule_GetPointer`\\ 를 참조하십시오.)"
199
193
200
194
#: ../../c-api/capsule.rst:123
201
- #, fuzzy
202
195
msgid ""
203
196
"In other words, if :c:func:`PyCapsule_IsValid` returns a true value, "
204
197
"calls to any of the accessors (any function starting with "
205
198
"``PyCapsule_Get``) are guaranteed to succeed."
206
199
msgstr ""
207
- "즉, :c:func:`PyCapsule_IsValid`\\ 가 참값을 반환하면, 모든 "
208
- "접근자(:c:func:`PyCapsule_Get` \\ 으로 시작하는 모든 함수)에 대한 호출이 성공함이 보장됩니다."
200
+ "즉, :c:func:`PyCapsule_IsValid`\\ 가 참값을 반환하면, 모든 접근자(``PyCapsule_Get`` \\ 으로 "
201
+ "시작하는 모든 함수)에 대한 호출이 성공함이 보장됩니다."
209
202
210
203
#: ../../c-api/capsule.rst:127
211
204
msgid ""
@@ -245,10 +238,9 @@ msgstr "*capsule* 내부의 void 포인터를 *pointer*\\로 설정합니다.
245
238
246
239
#: ../../c-api/capsule.rst:8
247
240
msgid "object"
248
- msgstr ""
241
+ msgstr "객체 "
249
242
250
243
#: ../../c-api/capsule.rst:8
251
- #, fuzzy
252
244
msgid "Capsule"
253
245
msgstr "캡슐"
254
246
0 commit comments