@@ -85,7 +85,8 @@ msgstr "거짓으로 정의된 상수: ``None`` 과 ``False``."
8585msgid ""
8686"zero of any numeric type: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, "
8787"``Fraction(0, 1)``"
88- msgstr "모든 숫자 형들의 영: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, ``Fraction(0, 1)``"
88+ msgstr ""
89+ "모든 숫자 형들의 영: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, ``Fraction(0, 1)``"
8990
9091#: ../Doc/library/stdtypes.rst:60
9192msgid ""
@@ -317,7 +318,8 @@ msgstr ""
317318msgid ""
318319"Non-identical instances of a class normally compare as non-equal unless "
319320"the class defines the :meth:`__eq__` method."
320- msgstr "클래스의 같지 않은 인스턴스들은 그 클래스가 :meth:`__eq__` 메서드를 정의하지 않는 이상 보통 같지 않다고 비교됩니다."
321+ msgstr ""
322+ "클래스의 같지 않은 인스턴스들은 그 클래스가 :meth:`__eq__` 메서드를 정의하지 않는 이상 보통 같지 않다고 비교됩니다."
321323
322324#: ../Doc/library/stdtypes.rst:185
323325msgid ""
@@ -343,14 +345,12 @@ msgstr ""
343345"적용할 수 있으며 예외를 발생시키지 않습니다."
344346
345347#: ../Doc/library/stdtypes.rst:199
346- #, fuzzy
347348msgid ""
348349"Two more operations with the same syntactic priority, :keyword:`in` and "
349350":keyword:`not in`, are supported by types that are :term:`iterable` or "
350351"implement the :meth:`__contains__` method."
351352msgstr ""
352- "같은 문법적 우선순위를 갖는 두 개의 연산, :keyword:`in` 과 :keyword:`not in`, 은 (아래에 나오는) "
353- "시퀀스 형에서만 지원됩니다."
353+ "같은 문법적 우선순위를 갖는 두 개의 연산, :keyword:`in` 과 :keyword:`not in`, 은 :term:`이터러블 <iterable>`\\ 이거나 :meth:`__contains__` 메서드를 구현하는 형에서 지원됩니다."
354354
355355#: ../Doc/library/stdtypes.rst:206
356356msgid "Numeric Types --- :class:`int`, :class:`float`, :class:`complex`"
@@ -711,6 +711,7 @@ msgid ""
711711"operations is calculated as though carried out in two's complement with "
712712"an infinite number of sign bits."
713713msgstr ""
714+ "비트 연산은 정수에 대해서만 의미가 있습니다. 비트 연산의 결과는 무한한 부호 비트를 갖는 2의 보수로 수행되는 것처럼 계산됩니다."
714715
715716#: ../Doc/library/stdtypes.rst:403
716717msgid ""
@@ -814,6 +815,9 @@ msgid ""
814815" max(x.bit_length(), y.bit_length()`` or more) is sufficient to get the "
815816"same result as if there were an infinite number of sign bits."
816817msgstr ""
818+ "무한한 부호 비트가 있는 것과 같은 결과를 얻으려면, 유한한 2의 보수 표현으로 적어도 하나의 추가적인 부호 확장 비트를 사용하여 "
819+ "(``1 + max(x.bit_length(), y.bit_length()`` 이상의 작업 비트 폭) 이러한 계산을 수행하는 것으로 "
820+ "충분합니다."
817821
818822#: ../Doc/library/stdtypes.rst:449
819823msgid "Additional Methods on Integer Types"
@@ -964,7 +968,8 @@ msgstr "16진수 문자열 *s* 로 표현되는 float를 돌려주는 클래스
964968msgid ""
965969"Note that :meth:`float.hex` is an instance method, while "
966970":meth:`float.fromhex` is a class method."
967- msgstr ":meth:`float.hex` 는 인스턴스 메서드인 반면, :meth:`float.fromhex` 는 클래스 메서드임에 주의하세요."
971+ msgstr ""
972+ ":meth:`float.hex` 는 인스턴스 메서드인 반면, :meth:`float.fromhex` 는 클래스 메서드임에 주의하세요."
968973
969974#: ../Doc/library/stdtypes.rst:593
970975msgid "A hexadecimal string takes the form::"
@@ -1547,7 +1552,8 @@ msgid ""
15471552"The only operation that immutable sequence types generally implement that"
15481553" is not also implemented by mutable sequence types is support for the "
15491554":func:`hash` built-in."
1550- msgstr "불변 시퀀스 형이 일반적으로 구현하지만, 가변 시퀀스 형에서는 구현되지 않는 연산은 내장 :func:`hash` 에 대한 지원입니다."
1555+ msgstr ""
1556+ "불변 시퀀스 형이 일반적으로 구현하지만, 가변 시퀀스 형에서는 구현되지 않는 연산은 내장 :func:`hash` 에 대한 지원입니다."
15511557
15521558#: ../Doc/library/stdtypes.rst:1003
15531559msgid ""
@@ -1646,18 +1652,16 @@ msgid "``s.clear()``"
16461652msgstr "``s.clear()``"
16471653
16481654#: ../Doc/library/stdtypes.rst:1068
1649- #, fuzzy
16501655msgid "removes all items from *s* (same as ``del s[:]``)"
1651- msgstr "``s`` 에서 모든 항목을 제거합니다 (``del s[:]`` 와 같습니다)"
1656+ msgstr "*s* 에서 모든 항목을 제거합니다 (``del s[:]`` 와 같습니다)"
16521657
16531658#: ../Doc/library/stdtypes.rst:1071
16541659msgid "``s.copy()``"
16551660msgstr "``s.copy()``"
16561661
16571662#: ../Doc/library/stdtypes.rst:1071
1658- #, fuzzy
16591663msgid "creates a shallow copy of *s* (same as ``s[:]``)"
1660- msgstr "``s`` 의 얕은 복사본을 만듭니다 (``s[:]`` 와 같습니다)"
1664+ msgstr "*s* 의 얕은 복사본을 만듭니다 (``s[:]`` 와 같습니다)"
16611665
16621666#: ../Doc/library/stdtypes.rst:1074
16631667msgid "``s.extend(t)`` or ``s += t``"
@@ -2110,7 +2114,8 @@ msgid ""
21102114"Implement the Sequence ABC. Support slicing and negative indices. Test "
21112115":class:`int` objects for membership in constant time instead of iterating"
21122116" through all items."
2113- msgstr "시퀀스 ABC를 구현합니다. :class:`int` 객체의 포함 검사는 모든 항목을 이터레이트하는 대신 상수 시간으로 수행됩니다."
2117+ msgstr ""
2118+ "시퀀스 ABC를 구현합니다. :class:`int` 객체의 포함 검사는 모든 항목을 이터레이트하는 대신 상수 시간으로 수행됩니다."
21142119
21152120#: ../Doc/library/stdtypes.rst:1362
21162121msgid ""
@@ -2127,7 +2132,6 @@ msgid ""
21272132msgstr ":attr:`~range.start`, :attr:`~range.stop`, :attr:`~range.step` 어트리뷰트."
21282133
21292134#: ../Doc/library/stdtypes.rst:1373
2130- #, fuzzy
21312135msgid ""
21322136"The `linspace recipe <http://code.activestate.com/recipes/579000/>`_ "
21332137"shows how to implement a lazy version of range suitable for floating "
@@ -2462,7 +2466,6 @@ msgid ""
24622466msgstr "포맷 문자열에 지정할 수 있는 다양한 포맷 옵션에 대한 설명은 :ref:`formatstrings` 을 참조하십시오."
24632467
24642468#: ../Doc/library/stdtypes.rst:1609
2465- #, fuzzy
24662469msgid ""
24672470"When formatting a number (:class:`int`, :class:`float`, :class:`complex`,"
24682471" :class:`decimal.Decimal` and subclasses) with the ``n`` type (ex: "
@@ -2472,12 +2475,12 @@ msgid ""
24722475" longer than 1 byte, and the ``LC_NUMERIC`` locale is different than the "
24732476"``LC_CTYPE`` locale. This temporary change affects other threads."
24742477msgstr ""
2475- "숫자(:class:`int`, :class:`float`, :class:`float` \\ 와 서브 클래스)를 ``n`` 형식으로 "
2476- "포매팅할 때 (예: ``'{:n}'.format(1234)``), 이 함수는 일시적으로 ``LC_CTYPE `` 로케일을 "
2477- "``LC_NUMERIC`` 로케일로 설정하여 :c:func:`localeconv` 의 ``decimal_point `` 와 "
2478- "``thousands_sep`` 필드를 디코드하는데, 이 필드들이 ASCII가 아니거나 1바이트보다 길고, "
2479- "``LC_NUMERIC`` 로케일이 ``LC_CTYPE`` 로케일과 다를 때만 그렇게 합니다. 이 임시 변경은 다른 스레드에 영향을 "
2480- " 줍니다."
2478+ "숫자(:class:`int`, :class:`float`, :class:`complex`, "
2479+ ":class:`decimal.Decimal` \\ 와 서브 클래스)를 ``n `` 형식으로 포매팅할 때 (예: "
2480+ "``'{:n}'.format(1234)``), 이 함수는 일시적으로 ``LC_CTYPE`` 로케일을 ``LC_NUMERIC `` 로케일로 "
2481+ "설정하여 :c:func:`localeconv` 의 ``decimal_point`` 와 ``thousands_sep`` 필드를 "
2482+ "디코드하는데, 이 필드들이 ASCII가 아니거나 1바이트보다 길고, ``LC_NUMERIC`` 로케일이 ``LC_CTYPE`` 로케일과 "
2483+ "다를 때만 그렇게 합니다. 이 임시 변경은 다른 스레드에 영향을 줍니다."
24812484
24822485#: ../Doc/library/stdtypes.rst:1618
24832486msgid ""
@@ -2501,7 +2504,8 @@ msgstr ""
25012504msgid ""
25022505"Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is"
25032506" not found."
2504- msgstr ":meth:`~str.find` 과 비슷하지만, 서브 스트링을 찾을 수 없는 경우 :exc:`ValueError` 를 일으킵니다."
2507+ msgstr ""
2508+ ":meth:`~str.find` 과 비슷하지만, 서브 스트링을 찾을 수 없는 경우 :exc:`ValueError` 를 일으킵니다."
25052509
25062510#: ../Doc/library/stdtypes.rst:1648
25072511msgid ""
@@ -3496,7 +3500,8 @@ msgstr "절댓값이 1e50 을 넘는 숫자에 대한 ``%f`` 변환은 더는 ``
34963500msgid ""
34973501"Binary Sequence Types --- :class:`bytes`, :class:`bytearray`, "
34983502":class:`memoryview`"
3499- msgstr "바이너리 시퀀스 형 --- :class:`bytes`, :class:`bytearray`, :class:`memoryview`"
3503+ msgstr ""
3504+ "바이너리 시퀀스 형 --- :class:`bytes`, :class:`bytearray`, :class:`memoryview`"
35003505
35013506#: ../Doc/library/stdtypes.rst:2285
35023507msgid ""
@@ -3513,7 +3518,8 @@ msgstr ""
35133518msgid ""
35143519"The :mod:`array` module supports efficient storage of basic data types "
35153520"like 32-bit integers and IEEE754 double-precision floating values."
3516- msgstr ":mod:`array` 모듈은 32-비트 정수와 IEEE754 배정도 부동 소수점 같은 기본 데이터형의 효율적인 저장을 지원합니다."
3521+ msgstr ""
3522+ ":mod:`array` 모듈은 32-비트 정수와 IEEE754 배정도 부동 소수점 같은 기본 데이터형의 효율적인 저장을 지원합니다."
35173523
35183524#: ../Doc/library/stdtypes.rst:2296
35193525msgid "Bytes Objects"
@@ -3927,7 +3933,8 @@ msgstr ""
39273933msgid ""
39283934"Like :meth:`~bytes.find`, but raise :exc:`ValueError` when the "
39293935"subsequence is not found."
3930- msgstr ":meth:`~bytes.find` 과 비슷하지만, 서브 시퀀스를 찾을 수 없는 경우 :exc:`ValueError` 를 일으킵니다."
3936+ msgstr ""
3937+ ":meth:`~bytes.find` 과 비슷하지만, 서브 시퀀스를 찾을 수 없는 경우 :exc:`ValueError` 를 일으킵니다."
39313938
39323939#: ../Doc/library/stdtypes.rst:2583
39333940msgid ""
@@ -4586,7 +4593,8 @@ msgstr ""
45864593msgid ""
45874594"A :class:`memoryview` supports slicing and indexing to expose its data. "
45884595"One-dimensional slicing will result in a subview::"
4589- msgstr ":class:`memoryview` 는 슬라이싱과 인덱싱을 지원하여 데이터를 노출합니다. 일차원 슬라이스는 서브 뷰를 만듭니다::"
4596+ msgstr ""
4597+ ":class:`memoryview` 는 슬라이싱과 인덱싱을 지원하여 데이터를 노출합니다. 일차원 슬라이스는 서브 뷰를 만듭니다::"
45904598
45914599#: ../Doc/library/stdtypes.rst:3445
45924600msgid ""
@@ -4627,7 +4635,8 @@ msgstr ""
46274635msgid ""
46284636"One-dimensional memoryviews can now be sliced. One-dimensional "
46294637"memoryviews with formats 'B', 'b' or 'c' are now hashable."
4630- msgstr "이제 일차원 메모리 뷰를 슬라이스할 수 있습니다. 이제 형식이 'B', 'b', 'c' 인 일차원 메모리 뷰는 해시 가능합니다."
4638+ msgstr ""
4639+ "이제 일차원 메모리 뷰를 슬라이스할 수 있습니다. 이제 형식이 'B', 'b', 'c' 인 일차원 메모리 뷰는 해시 가능합니다."
46314640
46324641#: ../Doc/library/stdtypes.rst:3503
46334642msgid ""
@@ -4714,7 +4723,8 @@ msgstr "버퍼 내의 데이터를 요소들의 리스트로 돌려줍니다. ::
47144723msgid ""
47154724":meth:`tolist` now supports all single character native formats in "
47164725":mod:`struct` module syntax as well as multi-dimensional representations."
4717- msgstr ":meth:`tolist` 는 이제 :mod:`struct` 모듈 문법의 모든 단일 문자 네이티브 형식과 다차원 표현을 지원합니다."
4726+ msgstr ""
4727+ ":meth:`tolist` 는 이제 :mod:`struct` 모듈 문법의 모든 단일 문자 네이티브 형식과 다차원 표현을 지원합니다."
47184728
47194729#: ../Doc/library/stdtypes.rst:3606
47204730msgid ""
@@ -4853,7 +4863,8 @@ msgstr "ndim = 0 일 때 ``None`` 대신 빈 튜플을 제공합니다."
48534863msgid ""
48544864"A tuple of integers the length of :attr:`ndim` giving the size in bytes "
48554865"to access each element for each dimension of the array."
4856- msgstr "배열의 각 차원에 대해 각 요소를 참조하는데 필요한 바이트 수를 제공하는, 길이 :attr:`ndim` 인 정수의 튜플입니다."
4866+ msgstr ""
4867+ "배열의 각 차원에 대해 각 요소를 참조하는데 필요한 바이트 수를 제공하는, 길이 :attr:`ndim` 인 정수의 튜플입니다."
48574868
48584869#: ../Doc/library/stdtypes.rst:3829
48594870msgid "Used internally for PIL-style arrays. The value is informational only."
@@ -5115,7 +5126,8 @@ msgstr "원소 *elem* 을 집합에 추가합니다."
51155126msgid ""
51165127"Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is "
51175128"not contained in the set."
5118- msgstr "원소 *elem* 을 집합에서 제거합니다. *elem* 가 집합에 포함되어 있지 않으면 :exc:`KeyError` 를 일으킵니다."
5129+ msgstr ""
5130+ "원소 *elem* 을 집합에서 제거합니다. *elem* 가 집합에 포함되어 있지 않으면 :exc:`KeyError` 를 일으킵니다."
51195131
51205132#: ../Doc/library/stdtypes.rst:4023
51215133msgid "Remove element *elem* from the set if it is present."
@@ -5330,7 +5342,8 @@ msgstr "*seq* 가 제공하는 값들을 키로 사용하고 모든 값을 *valu
53305342msgid ""
53315343":meth:`fromkeys` is a class method that returns a new dictionary. *value*"
53325344" defaults to ``None``."
5333- msgstr ":meth:`fromkeys` 는 새로운 딕셔너리를 돌려주는 클래스 메서드입니다. *value* 의 기본값은 ``None`` 입니다."
5345+ msgstr ""
5346+ ":meth:`fromkeys` 는 새로운 딕셔너리를 돌려주는 클래스 메서드입니다. *value* 의 기본값은 ``None`` 입니다."
53345347
53355348#: ../Doc/library/stdtypes.rst:4189
53365349msgid ""
@@ -5366,11 +5379,12 @@ msgstr ""
53665379" 주어지지 않고 *key* 가 딕셔너리에 없으면 :exc:`KeyError` 를 일으킵니다."
53675380
53685381#: ../Doc/library/stdtypes.rst:4211
5369- #, fuzzy
53705382msgid ""
53715383"Remove and return a ``(key, value)`` pair from the dictionary. Pairs are "
53725384"returned in :abbr:`LIFO (last-in, first-out)` order."
5373- msgstr "딕셔너리에서 임의의 ``(key, value)`` 쌍을 제거하고 돌려줍니다."
5385+ msgstr ""
5386+ "딕셔너리에서 ``(key, value)`` 쌍을 제거하고 돌려줍니다. 쌍은 :abbr:`LIFO (last-in, first-out)` "
5387+ "순서로 반환됩니다."
53745388
53755389#: ../Doc/library/stdtypes.rst:4214
53765390msgid ""
@@ -5385,7 +5399,7 @@ msgstr ""
53855399msgid ""
53865400"LIFO order is now guaranteed. In prior versions, :meth:`popitem` would "
53875401"return an arbitrary key/value pair."
5388- msgstr ""
5402+ msgstr "이제 LIFO 순서가 보장됩니다. 이전 버전에서는, :meth:`popitem` \\ 가 임의의 키/값 쌍을 반환합니다. "
53895403
53905404#: ../Doc/library/stdtypes.rst:4224
53915405msgid ""
@@ -5431,7 +5445,8 @@ msgstr ""
54315445msgid ""
54325446"Dictionaries preserve insertion order. Note that updating a key does not"
54335447" affect the order. Keys added after deletion are inserted at the end. ::"
5434- msgstr "딕셔너리는 삽입 순서를 유지합니다. 키를 갱신해도 순서에는 영향을 미치지 않습니다. 삭제 후에 추가된 키는 끝에 삽입됩니다.::"
5448+ msgstr ""
5449+ "딕셔너리는 삽입 순서를 유지합니다. 키를 갱신해도 순서에는 영향을 미치지 않습니다. 삭제 후에 추가된 키는 끝에 삽입됩니다.::"
54355450
54365451#: ../Doc/library/stdtypes.rst:4265
54375452msgid ""
@@ -6026,16 +6041,3 @@ msgid ""
60266041"To format only a tuple you should therefore provide a singleton tuple "
60276042"whose only element is the tuple to be formatted."
60286043msgstr "그래서, 튜플만을 포매팅하려면 포맷할 튜플 하나만을 포함하는 1-튜플을 제공해야 합니다."
6029-
6030- #~ msgid ""
6031- #~ "Bitwise operations only make sense for"
6032- #~ " integers. Negative numbers are treated"
6033- #~ " as their 2's complement value (this"
6034- #~ " assumes that there are enough bits"
6035- #~ " so that no overflow occurs during"
6036- #~ " the operation)."
6037- #~ msgstr ""
6038- #~ "비트 연산은 정수에 대해서만 의미가 있습니다. 음수는 "
6039- #~ "2의 보수 값으로 처리됩니다 (이는 연산 중에 "
6040- #~ "오버플로가 발생하지 않도록 충분한 비트가 있다고 가정합니다)."
6041-
0 commit comments