Skip to content

Commit 809700e

Browse files
committed
Closes #514 - update reference/expressions.po to reflect recent changes
1 parent bd9d2c5 commit 809700e

File tree

1 file changed

+14
-27
lines changed

1 file changed

+14
-27
lines changed

reference/expressions.po

Lines changed: 14 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,8 @@ msgstr ""
730730
msgid ""
731731
"This method is normally called implicitly, e.g. by a :keyword:`for` loop,"
732732
" or by the built-in :func:`next` function."
733-
msgstr "이 메서드는 보통 묵시적으로 호출됩니다, 예를 들어, :keyword:`for` 루프나 내장 :func:`next` 함수에 의해."
733+
msgstr ""
734+
"이 메서드는 보통 묵시적으로 호출됩니다, 예를 들어, :keyword:`for` 루프나 내장 :func:`next` 함수에 의해."
734735

735736
#: ../Doc/reference/expressions.rst:513
736737
msgid ""
@@ -1065,7 +1066,8 @@ msgstr ""
10651066
msgid ""
10661067
"If the primary is a sequence, the expression list must evaluate to an "
10671068
"integer or a slice (as discussed in the following section)."
1068-
msgstr "프라이머리가 시퀀스면, 표현식 목록은 값을 구했을 때 정수나 슬라이스(slice) (다음 섹션에서 논의합니다)가 나와야 합니다."
1069+
msgstr ""
1070+
"프라이머리가 시퀀스면, 표현식 목록은 값을 구했을 때 정수나 슬라이스(slice) (다음 섹션에서 논의합니다)가 나와야 합니다."
10691071

10701072
#: ../Doc/reference/expressions.rst:783
10711073
msgid ""
@@ -1795,6 +1797,10 @@ msgid ""
17951797
"x``, ``x < 3``, ``x == x``, ``x != x`` are all false. This behavior is "
17961798
"compliant with IEEE 754."
17971799
msgstr ""
1800+
"NaN(not-a-number) 값들 ``float('NaN')`` 과 ``decimal.Decimal('NaN')``\\은 특별합니다."
1801+
" 모든 숫자와 NaN 간의 비교는 거짓입니다. 반 직관적으로 내포하고 있는 것은, NaN 이 자신과 같지 않다는 것입니다. 예를 들어, "
1802+
"``x = float('NaN')``, ``3 < x``, ``x < 3``, ``x == x``, ``x != x``\\는 모두 "
1803+
"거짓입니다. 이 동작은 IEEE 754를 준수합니다."
17981804

17991805
#: ../Doc/reference/expressions.rst:1350
18001806
msgid ""
@@ -1939,7 +1945,8 @@ msgstr "비교 동작을 커스터마이즈하는 사용자 정의 클래스들
19391945
msgid ""
19401946
"Equality comparison should be reflexive. In other words, identical "
19411947
"objects should compare equal:"
1942-
msgstr "동등 비교는 반사적(reflexive)이어야 합니다. 다른 말로 표현하면, 아이덴티티가 같은 객체는 같다고 비교되어야 합니다:"
1948+
msgstr ""
1949+
"동등 비교는 반사적(reflexive)이어야 합니다. 다른 말로 표현하면, 아이덴티티가 같은 객체는 같다고 비교되어야 합니다:"
19431950

19441951
#: ../Doc/reference/expressions.rst:1428
19451952
msgid "``x is y`` implies ``x == y``"
@@ -2270,7 +2277,8 @@ msgid ""
22702277
"Python evaluates expressions from left to right. Notice that while "
22712278
"evaluating an assignment, the right-hand side is evaluated before the "
22722279
"left-hand side."
2273-
msgstr "파이썬은 왼쪽에서 오른쪽으로 표현식의 값을 구합니다. 대입의 값을 구하는 동안, 우변의 값이 좌변보다 먼저 구해짐에 주목하십시오."
2280+
msgstr ""
2281+
"파이썬은 왼쪽에서 오른쪽으로 표현식의 값을 구합니다. 대입의 값을 구하는 동안, 우변의 값이 좌변보다 먼저 구해짐에 주목하십시오."
22742282

22752283
#: ../Doc/reference/expressions.rst:1681
22762284
msgid ""
@@ -2437,7 +2445,8 @@ msgstr "``await`` ``x``"
24372445

24382446
#: ../Doc/reference/expressions.rst:1747
24392447
msgid "``x[index]``, ``x[index:index]``, ``x(arguments...)``, ``x.attribute``"
2440-
msgstr "``x[index]``, ``x[index:index]``, ``x(arguments...)``, ``x.attribute``"
2448+
msgstr ""
2449+
"``x[index]``, ``x[index:index]``, ``x(arguments...)``, ``x.attribute``"
24412450

24422451
#: ../Doc/reference/expressions.rst:1747
24432452
msgid "Subscription, slicing, call, attribute reference"
@@ -2558,25 +2567,3 @@ msgid ""
25582567
msgstr ""
25592568
"거듭제곱 연산자 ``**`` 는 오른쪽에 오는 산술이나 비트 일 항 연산자보다 약하게 결합합니다, 즉, ``2**-1`` 는 "
25602569
"``0.5`` 입니다."
2561-
2562-
#~ msgid ""
2563-
#~ "The not-a-number values :const:`float('NaN')` "
2564-
#~ "and :const:`Decimal('NaN')` are special. They"
2565-
#~ " are identical to themselves (``x is"
2566-
#~ " x`` is true) but are not equal"
2567-
#~ " to themselves (``x == x`` is "
2568-
#~ "false). Additionally, comparing any number"
2569-
#~ " to a not-a-number value will return"
2570-
#~ " ``False``. For example, both ``3 <"
2571-
#~ " float('NaN')`` and ``float('NaN') < 3``"
2572-
#~ " will return ``False``."
2573-
#~ msgstr ""
2574-
#~ "NaN(not-a-number) 값들 :const:`float('NaN')` 과 "
2575-
#~ ":const:`Decimal('NaN')` 은 특별합니다. 이것들은 자기 "
2576-
#~ "자신과 같은 객체지만 (``x is x`` 는 "
2577-
#~ "참입니다), 자기 자신과 같지는 않습니다 (``x == "
2578-
#~ "x`` 는 거짓입니다.). 추가로, 어떤 숫자건 NaN "
2579-
#~ "값과 비교하면 ``False`` 를 돌려줍니다. 예를 들어,"
2580-
#~ " ``3 < float('NaN')`` 과 ``float('NaN') "
2581-
#~ "< 3`` 모두 ``False`` 를 돌려줍니다."
2582-

0 commit comments

Comments
 (0)