Skip to content

Commit a1c3400

Browse files
committed
Closes #590 - update reference/datamodel.po to reflect recent changes
1 parent 708db4f commit a1c3400

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

reference/datamodel.po

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2501,7 +2501,8 @@ msgstr ""
25012501
msgid ""
25022502
"The starting point for descriptor invocation is a binding, ``a.x``. How "
25032503
"the arguments are assembled depends on ``a``:"
2504-
msgstr "디스크립터 호출의 시작점은 결합(binding)입니다, ``a.x``. 어떻게 인자들이 조합되는지는 ``a`` 에 따라 다릅니다:"
2504+
msgstr ""
2505+
"디스크립터 호출의 시작점은 결합(binding)입니다, ``a.x``. 어떻게 인자들이 조합되는지는 ``a`` 에 따라 다릅니다:"
25052506

25062507
#: ../Doc/reference/datamodel.rst:1680
25072508
msgid "Direct Call"
@@ -2511,7 +2512,8 @@ msgstr "직접 호출"
25112512
msgid ""
25122513
"The simplest and least common call is when user code directly invokes a "
25132514
"descriptor method: ``x.__get__(a)``."
2514-
msgstr "가장 간단하면서도 가장 덜 사용되는 호출은 사용자의 코드가 디스크립터 메서드를 직접 호출할 때입니다: ``x.__get__(a)``"
2515+
msgstr ""
2516+
"가장 간단하면서도 가장 덜 사용되는 호출은 사용자의 코드가 디스크립터 메서드를 직접 호출할 때입니다: ``x.__get__(a)``"
25152517

25162518
#: ../Doc/reference/datamodel.rst:1684
25172519
msgid "Instance Binding"
@@ -2533,7 +2535,8 @@ msgstr "클래스 결합"
25332535
msgid ""
25342536
"If binding to a class, ``A.x`` is transformed into the call: "
25352537
"``A.__dict__['x'].__get__(None, A)``."
2536-
msgstr "클래스에 결합하면, ``A.x`` 는 이런 호출로 변환됩니다: ``A.__dict__['x'].__get__(None, A)``."
2538+
msgstr ""
2539+
"클래스에 결합하면, ``A.x`` 는 이런 호출로 변환됩니다: ``A.__dict__['x'].__get__(None, A)``."
25372540

25382541
#: ../Doc/reference/datamodel.rst:1694
25392542
msgid "Super Binding"
@@ -2609,11 +2612,11 @@ msgstr ""
26092612
"부모로부터 물려받지 않는 한) *__dict__* 와 *__weakref__* 생성을 거부할 수 있도록 합니다."
26102613

26112614
#: ../Doc/reference/datamodel.rst:1727
2612-
#, fuzzy
26132615
msgid ""
26142616
"The space saved over using *__dict__* can be significant. Attribute "
26152617
"lookup speed can be significantly improved as well."
2616-
msgstr "*__dict__* 를 사용할 때에 비교해 절약되는 공간은 상당할 수 있습니다."
2618+
msgstr ""
2619+
"*__dict__* 를 사용할 때에 비교해 절약되는 공간은 상당할 수 있습니다. 어트리뷰트 조회 속도도 크게 개선할 수 있습니다."
26172620

26182621
#: ../Doc/reference/datamodel.rst:1732
26192622
msgid ""
@@ -3473,7 +3476,8 @@ msgstr ""
34733476
msgid ""
34743477
"If one of those methods does not support the operation with the supplied "
34753478
"arguments, it should return ``NotImplemented``."
3476-
msgstr "만약 이 메서드들 중 하나가 제공된 인자에 대해 연산을 지원하지 않으면, ``NotImplemented`` 를 돌려줘야 합니다."
3479+
msgstr ""
3480+
"만약 이 메서드들 중 하나가 제공된 인자에 대해 연산을 지원하지 않으면, ``NotImplemented`` 를 돌려줘야 합니다."
34773481

34783482
#: ../Doc/reference/datamodel.rst:2312
34793483
msgid ""
@@ -3935,7 +3939,8 @@ msgstr ""
39353939
msgid ""
39363940
"This method is semantically similar to the :meth:`__exit__`, with only "
39373941
"difference that it must return an *awaitable*."
3938-
msgstr "이 메서드는 :meth:`__exit__` 메서드와 의미상으로 유사한데, 유일한 차이점은 *어웨이터블* 을 돌려줘야 한다는 것입니다."
3942+
msgstr ""
3943+
"이 메서드는 :meth:`__exit__` 메서드와 의미상으로 유사한데, 유일한 차이점은 *어웨이터블* 을 돌려줘야 한다는 것입니다."
39393944

39403945
#: ../Doc/reference/datamodel.rst:2696
39413946
msgid "An example of an asynchronous context manager class::"
@@ -3985,4 +3990,3 @@ msgid ""
39853990
msgstr ""
39863991
"피연산자들이 같은 형이면, 뒤집히지 않은 메서드(:meth:`__add__` 같은)가 실패하면 그 연산이 지원되지 않는 것으로 "
39873992
"간주합니다. 이것이 뒤집힌 메서드가 호출되지 않는 이유입니다."
3988-

0 commit comments

Comments
 (0)