@@ -17,9 +17,8 @@ msgstr ""
1717"Generated-By : Babel 2.17.0\n "
1818
1919#: ../../library/py_compile.rst:2
20- #, fuzzy
2120msgid ":mod:`!py_compile` --- Compile Python source files"
22- msgstr ":mod:`py_compile` --- 파이썬 소스 파일 컴파일"
21+ msgstr ":mod:`! py_compile` --- 파이썬 소스 파일 컴파일"
2322
2423#: ../../library/py_compile.rst:10
2524msgid "**Source code:** :source:`Lib/py_compile.py`"
@@ -51,7 +50,6 @@ msgid ""
5150msgstr "파일을 컴파일하는 도중 에러가 일어날 때 발생하는 예외."
5251
5352#: ../../library/py_compile.rst:32
54- #, fuzzy
5553msgid ""
5654"Compile a source file to byte-code and write out the byte-code cache "
5755"file. The source code is loaded from the file named *file*. The byte-"
@@ -70,10 +68,11 @@ msgstr ""
7068"로드됩니다. 바이트 코드는 *cfile*\\ 에 기록되며, 기본값은 ``.pyc``\\ 로 끝나는 "
7169":pep:`3147`/:pep:`488` 경로입니다. 예를 들어, *file*\\ 이 ``/foo/bar/baz.py``\\ 이면 "
7270"*cfile*\\ 은 파이썬 3.2의 경우 ``/foo/bar/__pycache__/baz.cpython-32.pyc``\\ 로 기본 "
73- "설정됩니다. *dfile*\\ 이 지정되면, *file* 대신 에러 메시지에서 소스 파일 이름으로 사용됩니다. *doraise*\\ 가"
74- " 참이면, *file*\\ 을 컴파일하는 동안 에러를 만나면 :exc:`PyCompileError`\\ 가 발생합니다. "
75- "*doraise*\\ 가 거짓(기본값)이면, ``sys.stderr``\\ 에 에러 문자열이 기록되지만, 예외는 발생하지 않습니다. 이"
76- " 함수는 바이트 컴파일된 파일의 경로, 즉 사용된 *cfile* 값을 반환합니다."
71+ "설정됩니다. *dfile*\\ 이 지정되면, 예외 트레이스백에 표시하기 위해 소스 줄을 얻은 소스 파일 이름으로 *file* 대신 "
72+ "사용됩니다. *doraise*\\ 가 참이면, *file*\\ 을 컴파일하는 동안 에러를 만나면 "
73+ ":exc:`PyCompileError`\\ 가 발생합니다. *doraise*\\ 가 거짓(기본값)이면, ``sys.stderr``\\ 에"
74+ " 에러 문자열이 기록되지만, 예외는 발생하지 않습니다. 이 함수는 바이트 컴파일된 파일의 경로, 즉 사용된 *cfile* 값을 "
75+ "반환합니다."
7776
7877#: ../../library/py_compile.rst:46
7978msgid ""
@@ -174,7 +173,6 @@ msgid "The *quiet* parameter was added."
174173msgstr "*quiet* 매개 변수가 추가되었습니다."
175174
176175#: ../../library/py_compile.rst:99
177- #, fuzzy
178176msgid ""
179177"An enumeration of possible methods the interpreter can use to determine "
180178"whether a bytecode file is up to date with a source file. The ``.pyc`` "
@@ -223,10 +221,9 @@ msgstr "이 옵션은 ``.pycs``\\가 빌드 시스템처럼 파이썬 외부 시
223221
224222#: ../../library/py_compile.rst:131
225223msgid "Command-Line Interface"
226- msgstr ""
224+ msgstr "명령줄 인터페이스 "
227225
228226#: ../../library/py_compile.rst:133
229- #, fuzzy
230227msgid ""
231228"This module can be invoked as a script to compile several source files. "
232229"The files named in *filenames* are compiled and the resulting bytecode is"
@@ -235,30 +232,27 @@ msgid ""
235232"explicitly. The exit status is nonzero if one of the files could not be "
236233"compiled."
237234msgstr ""
238- "여러 소스 파일을 컴파일합니다. *args*\\ (또는 *args*\\ 가 ``None``\\ 이면 명령 줄)로 이름 붙여진 파일이 "
239- "컴파일되고 결과 바이트 코드가 일반적인 방식으로 캐시 됩니다. 이 함수는 소스 파일을 찾기 위해 디렉터리 구조를 검색하지 않습니다;"
240- " 명시적으로 이름이 지정된 파일 만 컴파일합니다. ``'-'``\\ 가 args의 유일한 매개 변수면, 파일 목록을 표준 입력에서 "
241- "가져옵니다."
235+ "이 모듈은 스크립트로 호출하여 여러 소스 파일을 컴파일할 수 있습니다. *filenames*\\ 로 이름이 지정된 파일이 컴파일되고 "
236+ "결과 바이트 코드가 일반적인 방식으로 캐시 됩니다. 이 프로그램은 소스 파일을 찾기 위해 디렉터리 구조를 검색하지 않습니다; "
237+ "명시적으로 이름이 지정된 파일 만 컴파일합니다. 컴파일할 수 없는 파일이 있으면 종료 상태가 0이 아닙니다."
242238
243239#: ../../library/py_compile.rst:145
244240msgid ""
245241"Positional arguments are files to compile. If ``-`` is the only "
246242"parameter, the list of files is taken from standard input."
247- msgstr ""
243+ msgstr "위치 인자는 컴파일할 파일입니다. ``-`` \\ 가 유일한 매개 변수면, 파일 목록을 표준 입력에서 가져옵니다. "
248244
249245#: ../../library/py_compile.rst:150
250246msgid "Suppress errors output."
251- msgstr ""
247+ msgstr "에러 출력을 억제합니다. "
252248
253249#: ../../library/py_compile.rst:152
254- #, fuzzy
255250msgid "Added support for ``-``."
256- msgstr "``'-' ``\\ 에 대한 지원이 추가되었습니다."
251+ msgstr "``- ``\\ 에 대한 지원이 추가되었습니다."
257252
258253#: ../../library/py_compile.rst:155
259- #, fuzzy
260254msgid "Added support for :option:`-q`."
261- msgstr "``'-'` `\\ 에 대한 지원이 추가되었습니다."
255+ msgstr ":option:`-q `\\ 에 대한 지원이 추가되었습니다."
262256
263257#: ../../library/py_compile.rst:161
264258msgid "Module :mod:`compileall`"
@@ -270,11 +264,11 @@ msgstr "디렉터리 트리에 있는 모든 파이썬 소스 파일을 컴파
270264
271265#: ../../library/py_compile.rst:12
272266msgid "file"
273- msgstr ""
267+ msgstr "파일 "
274268
275269#: ../../library/py_compile.rst:12
276270msgid "byte-code"
277- msgstr ""
271+ msgstr "바이트 코드 "
278272
279273#~ msgid ""
280274#~ "When this module is run as a "
0 commit comments