33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
55#
6- #, fuzzy
76msgid ""
87msgstr ""
98"Project-Id-Version : Python 3.6\n "
@@ -113,11 +112,10 @@ msgid ""
113112msgstr "객체를 타깃 목록, 괄호나 꺾쇠괄호로 둘러싸일 수 있는데 생략할 수 있습니다, 에 대입하는 것은 다음과 같이 재귀적으로 정의됩니다."
114113
115114#: ../Doc/reference/simple_stmts.rst:124
116- #, fuzzy
117115msgid ""
118116"If the target list is a single target with no trailing comma, optionally "
119117"in parentheses, the object is assigned to that target."
120- msgstr "타깃 목록이 괄호에 들어있는 하나의 타깃이면: 객체는 타깃에 대입됩니다."
118+ msgstr "타깃 목록이 (선택적으로 괄호에 들어있는) 뒤따르는 쉼표가 없는 하나의 타깃이면 객체는 타깃에 대입됩니다."
121119
122120#: ../Doc/reference/simple_stmts.rst:127 ../Doc/reference/simple_stmts.rst:139
123121msgid ""
@@ -390,12 +388,11 @@ msgid "Annotated assignment statements"
390388msgstr "어노테이트된 대입문(Annotated assignment statements)"
391389
392390#: ../Doc/reference/simple_stmts.rst:328
393- #, fuzzy
394391msgid ""
395392":term:`Annotation <variable annotation>` assignment is the combination, "
396393"in a single statement, of a variable or attribute annotation and an "
397394"optional assignment statement:"
398- msgstr "어노테이션 대입은, 한 문장에서, 변수나 어트리뷰트 어노테이션과 생략할 수 있는 대입문을 합치는 것입니다."
395+ msgstr ":term:` 어노테이션 <variable annotation>` 대입은, 한 문장에서, 변수나 어트리뷰트 어노테이션과 생략할 수 있는 대입문을 합치는 것입니다."
399396
400397#: ../Doc/reference/simple_stmts.rst:334
401398msgid ""
@@ -469,9 +466,8 @@ msgstr ""
469466"추가하는 제안."
470467
471468#: ../Doc/reference/simple_stmts.rst:373
472- #, fuzzy
473469msgid "The :keyword:`!assert` statement"
474- msgstr ":keyword:`assert` 문"
470+ msgstr ":keyword:`! assert` 문"
475471
476472#: ../Doc/reference/simple_stmts.rst:380
477473msgid ""
@@ -490,7 +486,6 @@ msgid ""
490486msgstr "확장된 형태, ``assert expression1, expression2`` 는 다음과 동등합니다 ::"
491487
492488#: ../Doc/reference/simple_stmts.rst:400
493- #, fuzzy
494489msgid ""
495490"These equivalences assume that :const:`__debug__` and "
496491":exc:`AssertionError` refer to the built-in variables with those names. "
@@ -504,7 +499,7 @@ msgid ""
504499msgstr ""
505500"이 동등성 들은 :const:`__debug__` 과 :exc:`AssertionError` 가 같은 이름의 내장 변수들을 "
506501"가리킨다고 가정합니다. 현재 구현에서, 내장 변수 :const:`__debug__` 은 일반적인 상황에서 ``True`` 이고, "
507- "최적화가 요청되었을 때 (명령행 옵션 -O ) ``False`` 입니다. 현재의 코드 생성기는 컴파일 시점에 최적화가 요청되면 "
502+ "최적화가 요청되었을 때 (명령행 옵션 :option:`-O` ) ``False`` 입니다. 현재의 코드 생성기는 컴파일 시점에 최적화가 요청되면 "
508503"assert 문을 위한 코드를 만들지 않습니다. 에러 메시지에 실패한 표현식의 소스 코드를 포함할 필요가 없음에 주의하십시오; "
509504"그것은 스택 트레이스의 일부로 출력됩니다."
510505
@@ -515,9 +510,8 @@ msgid ""
515510msgstr ":const:`__debug__` 에 대한 대입은 허락되지 않습니다. 이 내장 변수의 값은 인터프리터가 시작할 때 결정됩니다."
516511
517512#: ../Doc/reference/simple_stmts.rst:416
518- #, fuzzy
519513msgid "The :keyword:`!pass` statement"
520- msgstr ":keyword:`pass` 문"
514+ msgstr ":keyword:`! pass` 문"
521515
522516#: ../Doc/reference/simple_stmts.rst:426
523517msgid ""
@@ -529,9 +523,8 @@ msgstr ""
529523"필요하기는 하지만 할 일은 없을 때, 자리를 채우는 용도로 쓸모가 있습니다, 예를 들어::"
530524
531525#: ../Doc/reference/simple_stmts.rst:438
532- #, fuzzy
533526msgid "The :keyword:`!del` statement"
534- msgstr ":keyword:`del` 문"
527+ msgstr ":keyword:`! del` 문"
535528
536529#: ../Doc/reference/simple_stmts.rst:448
537530msgid ""
@@ -573,9 +566,8 @@ msgid ""
573566msgstr "예전에는 이름이 중첩된 블록에서 자유 변수로 등장하는 경우 지역 이름 공간에서 삭제하는 것이 허락되지 않았습니다."
574567
575568#: ../Doc/reference/simple_stmts.rst:477
576- #, fuzzy
577569msgid "The :keyword:`!return` statement"
578- msgstr "return 문"
570+ msgstr ":keyword:`! return` 문"
579571
580572#: ../Doc/reference/simple_stmts.rst:487
581573msgid ""
@@ -596,14 +588,13 @@ msgid ""
596588msgstr ":keyword:`return` 은 표현식 목록 (또는 ``None``)을 반환 값으로 해서, 현재의 함수 호출을 떠납니다."
597589
598590#: ../Doc/reference/simple_stmts.rst:497
599- #, fuzzy
600591msgid ""
601592"When :keyword:`return` passes control out of a :keyword:`try` statement "
602593"with a :keyword:`finally` clause, that :keyword:`!finally` clause is "
603594"executed before really leaving the function."
604595msgstr ""
605596":keyword:`return` 이 :keyword:`finally` 절을 가진 :keyword:`try` 문에서 제어가 벗어나도록"
606- " 만드는 경우, 함수로부터 진짜로 벗어나기 전에 그 :keyword:`finally` 절이 실행됩니다."
597+ " 만드는 경우, 함수로부터 진짜로 벗어나기 전에 그 :keyword:`! finally` 절이 실행됩니다."
607598
608599#: ../Doc/reference/simple_stmts.rst:501
609600msgid ""
@@ -618,7 +609,6 @@ msgstr ""
618609":attr:`StopIteration.value` 어트리뷰트가 됩니다."
619610
620611#: ../Doc/reference/simple_stmts.rst:506
621- #, fuzzy
622612msgid ""
623613"In an asynchronous generator function, an empty :keyword:`return` "
624614"statement indicates that the asynchronous generator is done and will "
@@ -628,12 +618,11 @@ msgid ""
628618msgstr ""
629619"비동기 제너레이터 함수에서, 빈 :keyword:`return` 문은 비동기 제너레이터가 끝났음을 알리고, "
630620":exc:`StopAsyncIteration` 예외를 일으킵니다. 비동기 제너레이터 함수에서, 비어있지 않은 "
631- ":keyword:`return` 은 문법 에러입니다."
621+ ":keyword:`! return` 은 문법 에러입니다."
632622
633623#: ../Doc/reference/simple_stmts.rst:514
634- #, fuzzy
635624msgid "The :keyword:`!yield` statement"
636- msgstr "yield 문"
625+ msgstr ":keyword:`! yield` 문"
637626
638627#: ../Doc/reference/simple_stmts.rst:526
639628msgid ""
@@ -667,9 +656,8 @@ msgid ""
667656msgstr ":keyword:`yield` 의 뜻에 대한 전체 세부 사항들은 :ref:`yieldexpr` 섹션을 참고하면 됩니다."
668657
669658#: ../Doc/reference/simple_stmts.rst:550
670- #, fuzzy
671659msgid "The :keyword:`!raise` statement"
672- msgstr ":keyword:`raise` 문"
660+ msgstr ":keyword:`! raise` 문"
673661
674662#: ../Doc/reference/simple_stmts.rst:561
675663msgid ""
@@ -758,9 +746,8 @@ msgid ""
758746msgstr "예외 문맥(exception context)의 자동 출력을 제한할 수 있는 ``__suppress_context__`` 어트리뷰트"
759747
760748#: ../Doc/reference/simple_stmts.rst:653
761- #, fuzzy
762749msgid "The :keyword:`!break` statement"
763- msgstr "break 문"
750+ msgstr ":keyword:`! break` 문"
764751
765752#: ../Doc/reference/simple_stmts.rst:664
766753msgid ""
@@ -772,11 +759,10 @@ msgstr ""
772759" 수 있습니다. 하지만 그 루프 안의 함수나 클래스 정의에 중첩되지는 않습니다."
773760
774761#: ../Doc/reference/simple_stmts.rst:671
775- #, fuzzy
776762msgid ""
777763"It terminates the nearest enclosing loop, skipping the optional "
778764":keyword:`!else` clause if the loop has one."
779- msgstr "가장 가까이서 둘러싸고 있는 루프를 종료하고, 그 루프가 :keyword:`else` 절을 갖고 있다면 건너뜁니다(skip)."
765+ msgstr "가장 가까이서 둘러싸고 있는 루프를 종료하고, 그 루프가 :keyword:`! else` 절을 갖고 있다면 건너뜁니다(skip)."
780766
781767#: ../Doc/reference/simple_stmts.rst:674
782768msgid ""
@@ -785,19 +771,17 @@ msgid ""
785771msgstr ":keyword:`for` 루프가 :keyword:`break` 로 종료되면, 루프 제어 타깃은 현재값을 유지합니다."
786772
787773#: ../Doc/reference/simple_stmts.rst:679
788- #, fuzzy
789774msgid ""
790775"When :keyword:`break` passes control out of a :keyword:`try` statement "
791776"with a :keyword:`finally` clause, that :keyword:`!finally` clause is "
792777"executed before really leaving the loop."
793778msgstr ""
794779":keyword:`break` 가 :keyword:`finally` 절을 가 :keyword:`try` 문에서 제어가 벗어나도록 "
795- "만드는 경우, 루프로부터 진짜로 벗어나기 전에 그 :keyword:`finally` 절이 실행됩니다."
780+ "만드는 경우, 루프로부터 진짜로 벗어나기 전에 그 :keyword:`! finally` 절이 실행됩니다."
796781
797782#: ../Doc/reference/simple_stmts.rst:687
798- #, fuzzy
799783msgid "The :keyword:`!continue` statement"
800- msgstr ":keyword:`continue` 문"
784+ msgstr ":keyword:`! continue` 문"
801785
802786#: ../Doc/reference/simple_stmts.rst:699
803787msgid ""
@@ -811,19 +795,17 @@ msgstr ""
811795"않습니다. 가장 가까이서 둘러싸고 있는 루프가 다음 사이클로 넘어가도록 만듭니다."
812796
813797#: ../Doc/reference/simple_stmts.rst:704
814- #, fuzzy
815798msgid ""
816799"When :keyword:`continue` passes control out of a :keyword:`try` statement"
817800" with a :keyword:`finally` clause, that :keyword:`!finally` clause is "
818801"executed before really starting the next loop cycle."
819802msgstr ""
820803":keyword:`continue` 가 :keyword:`finally` 절을 가진 :keyword:`try` 문에서 제어가 "
821- "벗어나도록 만드는 경우, 다음 루트 사이클을 시작하기 전에 그 :keyword:`finally` 절이 실행됩니다."
804+ "벗어나도록 만드는 경우, 다음 루트 사이클을 시작하기 전에 그 :keyword:`! finally` 절이 실행됩니다."
822805
823806#: ../Doc/reference/simple_stmts.rst:713
824- #, fuzzy
825807msgid "The :keyword:`!import` statement"
826- msgstr "임포트(:keyword:`import`) 문"
808+ msgstr "임포트(:keyword:`! import`) 문"
827809
828810#: ../Doc/reference/simple_stmts.rst:734
829811msgid ""
@@ -872,11 +854,10 @@ msgid ""
872854msgstr "요청된 모듈이 성공적으로 읽어 들여지면, 세 가지 중 한 방법으로 지역 이름 공간에 소개됩니다:"
873855
874856#: ../Doc/reference/simple_stmts.rst:759
875- #, fuzzy
876857msgid ""
877858"If the module name is followed by :keyword:`!as`, then the name following"
878859" :keyword:`!as` is bound directly to the imported module."
879- msgstr "모듈 이름 뒤에 :keyword:`as` 가 오면, :keyword:`as` 뒤에 오는 이름이 임포트된 모듈에 직접 연결됩니다."
860+ msgstr "모듈 이름 뒤에 :keyword:`! as` 가 오면, :keyword:`! as` 뒤에 오는 이름이 임포트된 모듈에 직접 연결됩니다."
880861
881862#: ../Doc/reference/simple_stmts.rst:761
882863msgid ""
@@ -927,13 +908,12 @@ msgid "if the attribute is not found, :exc:`ImportError` is raised."
927908msgstr "어트리뷰트가 발견되지 않으면 :exc:`ImportError` 를 일으킵니다."
928909
929910#: ../Doc/reference/simple_stmts.rst:784
930- #, fuzzy
931911msgid ""
932912"otherwise, a reference to that value is stored in the local namespace, "
933913"using the name in the :keyword:`!as` clause if it is present, otherwise "
934914"using the attribute name"
935915msgstr ""
936- "그렇지 않으면, 그 값에 대한 참조가 지역 이름 공간에 저장되는데, :keyword:`as` 절이 존재하면 거기에서 지정된 이름을 "
916+ "그렇지 않으면, 그 값에 대한 참조가 지역 이름 공간에 저장되는데, :keyword:`! as` 절이 존재하면 거기에서 지정된 이름을 "
937917"사용하고, 그렇지 않으면 어트리뷰트 이름을 사용합니다"
938918
939919#: ../Doc/reference/simple_stmts.rst:788
@@ -1159,12 +1139,10 @@ msgid "The original proposal for the __future__ mechanism."
11591139msgstr "__future__ 메커니즘에 대한 최초의 제안."
11601140
11611141#: ../Doc/reference/simple_stmts.rst:927
1162- #, fuzzy
11631142msgid "The :keyword:`!global` statement"
1164- msgstr ":keyword:`global` 문"
1143+ msgstr ":keyword:`! global` 문"
11651144
11661145#: ../Doc/reference/simple_stmts.rst:937
1167- #, fuzzy
11681146msgid ""
11691147"The :keyword:`global` statement is a declaration which holds for the "
11701148"entire current code block. It means that the listed identifiers are to "
@@ -1173,16 +1151,15 @@ msgid ""
11731151" globals without being declared global."
11741152msgstr ""
11751153":keyword:`global` 문은 현재 코드 블록 전체에 적용되는 선언입니다. 나열된 식별자들이 전역으로 해석되어야 한다는 "
1176- "뜻입니다. global 선언 없이 자유 변수들이 전역을 가리킬 수 있기는 하지만, :keyword:`global` 없이 전역 변수에"
1154+ "뜻입니다. global 선언 없이 자유 변수들이 전역을 가리킬 수 있기는 하지만, :keyword:`! global` 없이 전역 변수에"
11771155" 값을 대입하는 것은 불가능합니다."
11781156
11791157#: ../Doc/reference/simple_stmts.rst:943
1180- #, fuzzy
11811158msgid ""
11821159"Names listed in a :keyword:`global` statement must not be used in the "
11831160"same code block textually preceding that :keyword:`!global` statement."
11841161msgstr ""
1185- ":keyword:`global` 문에 나열된 이름들은 같은 코드 블록에서 :keyword:`global` 문 앞에 등장할 수 "
1162+ ":keyword:`global` 문에 나열된 이름들은 같은 코드 블록에서 :keyword:`! global` 문 앞에 등장할 수 "
11861163"없습니다."
11871164
11881165#: ../Doc/reference/simple_stmts.rst:946
@@ -1206,7 +1183,6 @@ msgstr ""
12061183"프로그램의 의미를 예고 없이 변경할 수 있기 때문입니다."
12071184
12081185#: ../Doc/reference/simple_stmts.rst:962
1209- #, fuzzy
12101186msgid ""
12111187"**Programmer's note:** :keyword:`global` is a directive to the parser. "
12121188"It applies only to code parsed at the same time as the :keyword:`!global`"
@@ -1218,15 +1194,14 @@ msgid ""
12181194":func:`eval` and :func:`compile` functions."
12191195msgstr ""
12201196"**프로그래머의 주의 사향:** :keyword:`global` 은 파서에 주는 지시자(directive)입니다. "
1221- ":keyword:`global` 문과 같은 시점에 파싱되는 코드에만 적용됩니다. 특히, 내장 :func:`exec` 함수로 공급되는"
1222- " 문자열이나 코드 객체에 포함된 :keyword:`global` 문은 그 함수 호출을 *포함하는* 코드 블록에는 영향을 주지 않고,"
1223- " 그런 문자열에 포함된 코드 역시 함수 호출을 포함하는 코드에 있는 :keyword:`global` 문에 영향을 받지 않습니다. "
1197+ ":keyword:`! global` 문과 같은 시점에 파싱되는 코드에만 적용됩니다. 특히, 내장 :func:`exec` 함수로 공급되는"
1198+ " 문자열이나 코드 객체에 포함된 :keyword:`! global` 문은 그 함수 호출을 *포함하는* 코드 블록에는 영향을 주지 않고,"
1199+ " 그런 문자열에 포함된 코드 역시 함수 호출을 포함하는 코드에 있는 :keyword:`! global` 문에 영향을 받지 않습니다. "
12241200":func:`eval` 과 :func:`compile` 함수들도 마찬가지입니다."
12251201
12261202#: ../Doc/reference/simple_stmts.rst:974
1227- #, fuzzy
12281203msgid "The :keyword:`!nonlocal` statement"
1229- msgstr ":keyword:`nonlocal` 문"
1204+ msgstr ":keyword:`! nonlocal` 문"
12301205
12311206#: ../Doc/reference/simple_stmts.rst:986
12321207msgid ""
0 commit comments