@@ -151,13 +151,23 @@ msgid ""
151
151
"default the dictionary of the module :mod:`__main__` is used. (See the "
152
152
"explanation of the built-in :func:`exec` or :func:`eval` functions.)"
153
153
msgstr ""
154
+ "디버거 제어하에 *문장*\\ (주어진 문자열 또는 코드 객체)을 실행합니다. "
155
+ "코드가 실행하기 에에 디버거 프롬프트가 나타납니다. "
156
+ "중단점을 지정하고 :pdbcmd:`continue`\\ 를 입력하거나, "
157
+ ":pdbcmd:`step` 또는 :pdbcmd:`next`\\ 를 통는 문장을 단계별로 살펴볼 수 있습니다. (이 모든 명령은 아래에 설명되어 있습니다.) "
158
+ "선택적 인자 *globals*\\ 와 *locals*\\ 는 코드가 실행되는 환경을 구체적으로 명시하고, "
159
+ "기본적으로는 이 모듈의 딕셔너리 :mod:`__main__`\\ 이 사용됩니다. "
160
+ "(내장 함수 :func:`exec` 또는 :func:`eval`\\ 에 대한 설명 참조.)"
154
161
155
162
#: ../Doc/library/pdb.rst:118
156
163
msgid ""
157
164
"Evaluate the *expression* (given as a string or a code object) under "
158
165
"debugger control. When :func:`runeval` returns, it returns the value of "
159
166
"the expression. Otherwise this function is similar to :func:`run`."
160
167
msgstr ""
168
+ "디버거 제어하에 *표현식*\\ (주어진 문자열 또는 코드 객체)을 평가합니다. "
169
+ ":func:`runeval`\\ 이 반환될 때, 표현식의 값을 반환합니다. "
170
+ "그렇지 않으면 이 함수는 :func:`run`\\ 과 유사한 함수입니다."
161
171
162
172
#: ../Doc/library/pdb.rst:125
163
173
msgid ""
@@ -166,6 +176,9 @@ msgid ""
166
176
"function call returned. The debugger prompt appears as soon as the "
167
177
"function is entered."
168
178
msgstr ""
179
+ "*함수*\\ (문자열이 아닌, 함수 또는 메서드 객체)를 주어진 인자와 함께 호출합니다. "
180
+ ":func:`runcall`\\ 이 반환될 때, 함수 호출로 반환된 값을 반환합니다. "
181
+ "디버거 프롬프트는 함수에 진입하자마자 나타납니다."
169
182
170
183
#: ../Doc/library/pdb.rst:133
171
184
msgid ""
@@ -174,10 +187,15 @@ msgid ""
174
187
"otherwise being debugged (e.g. when an assertion fails). If given, "
175
188
"*header* is printed to the console just before debugging begins."
176
189
msgstr ""
190
+ "호출되는 스택 프레임에서 디버거에 진입합니다. "
191
+ "코드가 디버그되지 않는 경우(예를 들면, assertion이 실패하는 경우)일지라도, "
192
+ "프로그램의 특정 지점에 중단점을 하드코딩할 때 유용하게 사용됩니다. "
193
+ "*header*\\ 값이 주어지면, 디버깅이 시작되기 바로 전에 그 값이 콘솔에 출력됩니다."
177
194
178
195
#: ../Doc/library/pdb.rst:138
179
196
msgid "The keyword-only argument *header*."
180
197
msgstr ""
198
+ "키워드 전용 인자 *header*."
181
199
182
200
#: ../Doc/library/pdb.rst:144
183
201
msgid ""
@@ -186,12 +204,16 @@ msgid ""
186
204
"being handled (an exception must be being handled if the default is to be"
187
205
" used)."
188
206
msgstr ""
207
+ "주어진 *traceback*\\ 객체의 포스트 모템(post-mortem) 디버깅으로 진입합니다. "
208
+ "만약 *traceback*\\ 이 주어지지 않았다면, 현재 처리되고 있는 한 예외를 사용합니다. "
209
+ "(기본값을 사용하는 경우, 예외는 반드시 처리되고 있어야 합니다.)"
189
210
190
211
#: ../Doc/library/pdb.rst:152
191
212
msgid ""
192
213
"Enter post-mortem debugging of the traceback found in "
193
214
":data:`sys.last_traceback`."
194
215
msgstr ""
216
+ ":data:`sys.last_traceback`\\ 에서 찾은 traceback의 포스트 모템(post-mortem) 디버깅으로 진입합니다."
195
217
196
218
#: ../Doc/library/pdb.rst:156
197
219
msgid ""
0 commit comments