Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5b3ebba

Browse files
committed
#1086 - remove fuzzy flags
1 parentcf1a7f7 commit5b3ebba

File tree

1 file changed

+19
-23
lines changed

1 file changed

+19
-23
lines changed

‎c-api/code.po

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,24 @@ msgid ""
3636
msgstr"코드 객체를 설명하는 데 사용되는 객체의 C 구조체. 이 형의 필드는 언제든지 변경될 수 있습니다."
3737

3838
#:../../c-api/code.rst:24
39-
#,fuzzy
4039
msgid""
4140
"This is an instance of :c:type:`PyTypeObject` representing the Python "
4241
":ref:`code object <code-objects>`."
43-
msgstr"이것은 Python :class:`code` 형을 나타내는 :c:type:`PyTypeObject`\\의 인스턴스입니다."
42+
msgstr""
43+
"이것은 파이썬 :ref:`코드 객체 <code-objects>`\\를 나타내는 :c:type:`PyTypeObject`\\의 "
44+
"인스턴스입니다."
4445

4546
#:../../c-api/code.rst:30
46-
#,fuzzy
4747
msgid""
4848
"Return true if *co* is a :ref:`code object <code-objects>`. This function"
4949
" always succeeds."
50-
msgstr"*co*\\가 :class:`code` 객체면 참을 반환합니다. 이 함수는 항상 성공합니다."
50+
msgstr"*co*\\가 :ref:`코드 객체 <code-objects>`\\ 참을 반환합니다. 이 함수는 항상 성공합니다."
5151

5252
#:../../c-api/code.rst:35
53-
#,fuzzy
5453
msgid""
5554
"Return the number of :term:`free (closure) variables <closure variable>` "
5655
"in a code object."
57-
msgstr"*co*\\있는 자유변수의 개수를 반환합니다."
56+
msgstr"코드 객체에있는:term:`자유(클로저) 변수 <closure variable>`\\ 개수를 반환합니다."
5857

5958
#:../../c-api/code.rst:40
6059
msgid""
@@ -70,14 +69,12 @@ msgid ""
7069
msgstr""
7170

7271
#:../../c-api/code.rst:51
73-
#,fuzzy
7472
msgid""
7573
"Return a new code object. If you need a dummy code object to create a "
7674
"frame, use :c:func:`PyCode_NewEmpty` instead."
7775
msgstr""
7876
"새 코드 객체를 반환합니다. 프레임을 만들기 위해 더미 코드 객체가 필요하면, 대신 "
79-
":c:func:`PyCode_NewEmpty`\\를 사용하십시오. 바이트 코드의 정의가 자주 변경되기 때문에, "
80-
":c:func:`PyCode_New`\\를 직접 호출하면 정확한 파이썬 버전에 구속될 수 있습니다."
77+
":c:func:`PyCode_NewEmpty`\\를 사용하십시오."
8178

8279
#:../../c-api/code.rst:54
8380
msgid""
@@ -105,12 +102,14 @@ msgid ""
105102
msgstr""
106103

107104
#:../../c-api/code.rst:74
108-
#,fuzzy
109105
msgid""
110106
"Similar to :c:func:`PyUnstable_Code_New`, but with an extra "
111107
"\"posonlyargcount\" for positional-only arguments. The same caveats that "
112108
"apply to ``PyUnstable_Code_New`` also apply to this function."
113-
msgstr":c:func:`PyCode_New`\\와 비슷하지만, 위치 전용 인자를 위한 추가\"posonlyargcount\"가 있습니다."
109+
msgstr""
110+
":c:func:`PyUnstable_Code_New`\\와 비슷하지만, 위치 전용 인자를 위한 추가 "
111+
"\"posonlyargcount\"가 있습니다. ``PyUnstable_Code_New``\\에 적용되는 것과 같은 주의 사항이 이"
112+
" 함수에도 적용됩니다."
114113

115114
#:../../c-api/code.rst:79
116115
msgid"as ``PyCode_NewWithPosOnlyArgs``"
@@ -127,14 +126,13 @@ msgid ""
127126
msgstr""
128127

129128
#:../../c-api/code.rst:92
130-
#,fuzzy
131129
msgid""
132130
"Return a new empty code object with the specified filename, function "
133131
"name, and first line number. The resulting code object will raise an "
134132
"``Exception`` if executed."
135133
msgstr""
136-
"지정된 파일명, 함수명 및 첫 번째 줄 번호를 갖는 새 빈 코드 객체를 반환합니다. 결과 코드 객체를:func:`exec` 또는 "
137-
":func:`eval`\\하는 것은 불법입니다."
134+
"지정된 파일명, 함수명 및 첫 번째 줄 번호를 갖는 새 빈 코드 객체를 반환합니다. 결과 코드 객체를실행하면 "
135+
"``Exception``\\을 발생시킵니다."
138136

139137
#:../../c-api/code.rst:98
140138
msgid""
@@ -354,36 +352,34 @@ msgid ""
354352
msgstr""
355353

356354
#:../../c-api/code.rst:3
357-
#,fuzzy
358355
msgid"object"
359-
msgstr"코드객체"
356+
msgstr"객체"
360357

361358
#:../../c-api/code.rst:3
362359
msgid"code"
363-
msgstr""
360+
msgstr"코드"
364361

365362
#:../../c-api/code.rst:3
366-
#,fuzzy
367363
msgid"code object"
368364
msgstr"코드 객체"
369365

370366
#:../../c-api/code.rst:64
371367
msgid"PyCode_New (C function)"
372-
msgstr""
368+
msgstr"PyCode_New (C 함수)"
373369

374370
#:../../c-api/code.rst:77
375371
msgid"PyCode_NewWithPosOnlyArgs (C function)"
376-
msgstr""
372+
msgstr"PyCode_NewWithPosOnlyArgs (C 함수)"
377373

378374
#:../../c-api/code.rst:237
379375
msgid"_PyEval_RequestCodeExtraIndex (C function)"
380-
msgstr""
376+
msgstr"_PyEval_RequestCodeExtraIndex (C 함수)"
381377

382378
#:../../c-api/code.rst:255
383379
msgid"_PyCode_GetExtra (C function)"
384-
msgstr""
380+
msgstr"_PyCode_GetExtra (C 함수)"
385381

386382
#:../../c-api/code.rst:270
387383
msgid"_PyCode_SetExtra (C function)"
388-
msgstr""
384+
msgstr"_PyCode_SetExtra (C 함수)"
389385

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp