@@ -17,9 +17,8 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/symtable.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!symtable` --- Access to the compiler's symbol tables"
22
- msgstr ":mod:`symtable` --- 컴파일러 심볼 테이블 액세스"
21
+ msgstr ":mod:`! symtable` --- 컴파일러 심볼 테이블 액세스"
23
22
24
23
#: ../../library/symtable.rst:7
25
24
msgid "**Source code:** :source:`Lib/symtable.py`"
@@ -101,11 +100,10 @@ msgid "A namespace table for a block. The constructor is not public."
101
100
msgstr "블록에 대한 이름 공간 테이블. 생성자는 공개되지 않습니다."
102
101
103
102
#: ../../library/symtable.rst:88
104
- #, fuzzy
105
103
msgid ""
106
104
"Return the type of the symbol table. Possible values are members of the "
107
105
":class:`SymbolTableType` enumeration."
108
- msgstr "심볼 테이블의 형을 돌려줍니다. 가능한 값은 ``' class'``, ``'module'`` 및 ``'function'`` \\ 입니다 ."
106
+ msgstr "심볼 테이블의 형을 돌려줍니다. 가능한 값은 : class:`SymbolTableType` 열거형의 멤버들입니다 ."
109
107
110
108
#: ../../library/symtable.rst:91
111
109
msgid ""
@@ -179,7 +177,6 @@ msgid "Return a list of the nested symbol tables."
179
177
msgstr "중첩된 심볼 테이블의 리스트를 반환합니다."
180
178
181
179
#: ../../library/symtable.rst:153
182
- #, fuzzy
183
180
msgid ""
184
181
"A namespace for a function or method. This class inherits from "
185
182
":class:`SymbolTable`."
@@ -198,30 +195,26 @@ msgid "Return a tuple containing names of globals in this function."
198
195
msgstr "이 함수의 전역 이름을 포함하는 튜플을 반환합니다."
199
196
200
197
#: ../../library/symtable.rst:170
201
- #, fuzzy
202
198
msgid ""
203
199
"Return a tuple containing names of explicitly declared nonlocals in this "
204
200
"function."
205
- msgstr "이 함수의 nonlocal 이름을 포함하는 튜플을 반환합니다."
201
+ msgstr "이 함수에서 명시적으로 선언된 nonlocal 이름을 포함하는 튜플을 반환합니다."
206
202
207
203
#: ../../library/symtable.rst:174
208
- #, fuzzy
209
204
msgid ""
210
205
"Return a tuple containing names of :term:`free (closure) variables "
211
206
"<closure variable>` in this function."
212
- msgstr "이 함수의 자유 변수 이름을 포함하는 튜플을 반환합니다."
207
+ msgstr "이 함수의 :term:` 자유 (클로저) 변수 <closure variable>` 이름을 포함하는 튜플을 반환합니다."
213
208
214
209
#: ../../library/symtable.rst:180
215
- #, fuzzy
216
210
msgid "A namespace of a class. This class inherits from :class:`SymbolTable`."
217
211
msgstr "클래스의 이름 공간. 이 클래스는 :class:`SymbolTable`\\ 을 상속합니다."
218
212
219
213
#: ../../library/symtable.rst:184
220
- #, fuzzy
221
214
msgid ""
222
215
"Return a tuple containing the names of method-like functions declared in "
223
216
"the class."
224
- msgstr "클래스에서 선언된 메서드 이름을 포함하는 튜플을 반환합니다."
217
+ msgstr "클래스에서 선언된 메서드 같은 함수의 이름을 포함하는 튜플을 반환합니다."
225
218
226
219
#: ../../library/symtable.rst:187
227
220
msgid ""
@@ -236,9 +229,8 @@ msgid ""
236
229
msgstr ""
237
230
238
231
#: ../../library/symtable.rst:193
239
- #, fuzzy
240
232
msgid "For example:"
241
- msgstr "예를 들면:: "
233
+ msgstr "예를 들면:"
242
234
243
235
#: ../../library/symtable.rst:215
244
236
msgid ""
@@ -319,6 +311,10 @@ msgid ""
319
311
">>> table.lookup(\" some_func\" ).is_namespace()\n"
320
312
"True"
321
313
msgstr ""
314
+ ">>> table = symtable.symtable(\" def some_func(): pass\" , \" string\" , "
315
+ "\" exec\" )\n"
316
+ ">>> table.lookup(\" some_func\" ).is_namespace()\n"
317
+ "True"
322
318
323
319
#: ../../library/symtable.rst:283
324
320
msgid ""
@@ -334,11 +330,12 @@ msgid "Return a list of namespaces bound to this name."
334
330
msgstr "이 이름에 연결된 이름 공간의 리스트를 돌려줍니다."
335
331
336
332
#: ../../library/symtable.rst:293
337
- #, fuzzy
338
333
msgid ""
339
334
"Return the namespace bound to this name. If more than one or no namespace"
340
335
" is bound to this name, a :exc:`ValueError` is raised."
341
- msgstr "이 이름에 연결된 이름 공간을 돌려줍니다. 둘 이상의 이름 공간이 연결되면, :exc:`ValueError`\\ 가 발생합니다."
336
+ msgstr ""
337
+ "이 이름에 연결된 이름 공간을 돌려줍니다. 이 이름에 연결된 이름 공간이 둘 이상이거나 없으면, "
338
+ ":exc:`ValueError`\\ 가 발생합니다."
342
339
343
340
#: ../../library/symtable.rst:300
344
341
msgid "Command-Line Usage"
@@ -352,7 +349,7 @@ msgstr ""
352
349
353
350
#: ../../library/symtable.rst:306
354
351
msgid "python -m symtable [infile...]"
355
- msgstr ""
352
+ msgstr "python -m symtable [infile...] "
356
353
357
354
#: ../../library/symtable.rst:310
358
355
msgid ""
0 commit comments