Skip to content

Commit 74a632a

Browse files
committed
#797 - remove fuzzy flags
1 parent e57d33c commit 74a632a

File tree

1 file changed

+14
-17
lines changed

1 file changed

+14
-17
lines changed

library/symtable.po

+14-17
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/symtable.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!symtable` --- Access to the compiler's symbol tables"
22-
msgstr ":mod:`symtable` --- 컴파일러 심볼 테이블 액세스"
21+
msgstr ":mod:`!symtable` --- 컴파일러 심볼 테이블 액세스"
2322

2423
#: ../../library/symtable.rst:7
2524
msgid "**Source code:** :source:`Lib/symtable.py`"
@@ -101,11 +100,10 @@ msgid "A namespace table for a block. The constructor is not public."
101100
msgstr "블록에 대한 이름 공간 테이블. 생성자는 공개되지 않습니다."
102101

103102
#: ../../library/symtable.rst:88
104-
#, fuzzy
105103
msgid ""
106104
"Return the type of the symbol table. Possible values are members of the "
107105
":class:`SymbolTableType` enumeration."
108-
msgstr "심볼 테이블의 형을 돌려줍니다. 가능한 값은 ``'class'``, ``'module'`` 및 ``'function'``\\입니다."
106+
msgstr "심볼 테이블의 형을 돌려줍니다. 가능한 값은 :class:`SymbolTableType` 열거형의 멤버들입니다."
109107

110108
#: ../../library/symtable.rst:91
111109
msgid ""
@@ -179,7 +177,6 @@ msgid "Return a list of the nested symbol tables."
179177
msgstr "중첩된 심볼 테이블의 리스트를 반환합니다."
180178

181179
#: ../../library/symtable.rst:153
182-
#, fuzzy
183180
msgid ""
184181
"A namespace for a function or method. This class inherits from "
185182
":class:`SymbolTable`."
@@ -198,30 +195,26 @@ msgid "Return a tuple containing names of globals in this function."
198195
msgstr "이 함수의 전역 이름을 포함하는 튜플을 반환합니다."
199196

200197
#: ../../library/symtable.rst:170
201-
#, fuzzy
202198
msgid ""
203199
"Return a tuple containing names of explicitly declared nonlocals in this "
204200
"function."
205-
msgstr "이 함수의 nonlocal 이름을 포함하는 튜플을 반환합니다."
201+
msgstr "이 함수에서 명시적으로 선언된 nonlocal 이름을 포함하는 튜플을 반환합니다."
206202

207203
#: ../../library/symtable.rst:174
208-
#, fuzzy
209204
msgid ""
210205
"Return a tuple containing names of :term:`free (closure) variables "
211206
"<closure variable>` in this function."
212-
msgstr "이 함수의 자유 변수 이름을 포함하는 튜플을 반환합니다."
207+
msgstr "이 함수의 :term:`자유 (클로저) 변수 <closure variable>` 이름을 포함하는 튜플을 반환합니다."
213208

214209
#: ../../library/symtable.rst:180
215-
#, fuzzy
216210
msgid "A namespace of a class. This class inherits from :class:`SymbolTable`."
217211
msgstr "클래스의 이름 공간. 이 클래스는 :class:`SymbolTable`\\을 상속합니다."
218212

219213
#: ../../library/symtable.rst:184
220-
#, fuzzy
221214
msgid ""
222215
"Return a tuple containing the names of method-like functions declared in "
223216
"the class."
224-
msgstr "클래스에서 선언된 메서드 이름을 포함하는 튜플을 반환합니다."
217+
msgstr "클래스에서 선언된 메서드 같은 함수의 이름을 포함하는 튜플을 반환합니다."
225218

226219
#: ../../library/symtable.rst:187
227220
msgid ""
@@ -236,9 +229,8 @@ msgid ""
236229
msgstr ""
237230

238231
#: ../../library/symtable.rst:193
239-
#, fuzzy
240232
msgid "For example:"
241-
msgstr "예를 들면::"
233+
msgstr "예를 들면:"
242234

243235
#: ../../library/symtable.rst:215
244236
msgid ""
@@ -319,6 +311,10 @@ msgid ""
319311
">>> table.lookup(\"some_func\").is_namespace()\n"
320312
"True"
321313
msgstr ""
314+
">>> table = symtable.symtable(\"def some_func(): pass\", \"string\", "
315+
"\"exec\")\n"
316+
">>> table.lookup(\"some_func\").is_namespace()\n"
317+
"True"
322318

323319
#: ../../library/symtable.rst:283
324320
msgid ""
@@ -334,11 +330,12 @@ msgid "Return a list of namespaces bound to this name."
334330
msgstr "이 이름에 연결된 이름 공간의 리스트를 돌려줍니다."
335331

336332
#: ../../library/symtable.rst:293
337-
#, fuzzy
338333
msgid ""
339334
"Return the namespace bound to this name. If more than one or no namespace"
340335
" is bound to this name, a :exc:`ValueError` is raised."
341-
msgstr "이 이름에 연결된 이름 공간을 돌려줍니다. 둘 이상의 이름 공간이 연결되면, :exc:`ValueError`\\가 발생합니다."
336+
msgstr ""
337+
"이 이름에 연결된 이름 공간을 돌려줍니다. 이 이름에 연결된 이름 공간이 둘 이상이거나 없으면, "
338+
":exc:`ValueError`\\가 발생합니다."
342339

343340
#: ../../library/symtable.rst:300
344341
msgid "Command-Line Usage"
@@ -352,7 +349,7 @@ msgstr ""
352349

353350
#: ../../library/symtable.rst:306
354351
msgid "python -m symtable [infile...]"
355-
msgstr ""
352+
msgstr "python -m symtable [infile...]"
356353

357354
#: ../../library/symtable.rst:310
358355
msgid ""

0 commit comments

Comments
 (0)