Skip to content

Commit 9227eb8

Browse files
committed
3.9.4
1 parent 95cf52d commit 9227eb8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+11502
-10949
lines changed

c-api/bool.po

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2017-11-26 18:49+0900\n"
10+
"POT-Creation-Date: 2021-04-08 08:18+0900\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
1313
"Language-Team: Korean (https://python.flowdas.com)\n"
@@ -31,34 +31,37 @@ msgstr ""
3131
" 개의 부울만 있습니다. 따라서 일반적인 생성 및 삭제 함수는 부울에 적용되지 않습니다. 그러나 다음 매크로를 사용할 수 있습니다."
3232

3333
#: ../Doc/c-api/bool.rst:16
34-
msgid "Return true if *o* is of type :c:data:`PyBool_Type`."
34+
#, fuzzy
35+
msgid ""
36+
"Return true if *o* is of type :c:data:`PyBool_Type`. This function "
37+
"always succeeds."
3538
msgstr "*o*\\가 :c:data:`PyBool_Type` 형이면 참을 돌려줍니다."
3639

37-
#: ../Doc/c-api/bool.rst:21
40+
#: ../Doc/c-api/bool.rst:22
3841
msgid ""
3942
"The Python ``False`` object. This object has no methods. It needs to be"
4043
" treated just like any other object with respect to reference counts."
4144
msgstr "파이썬 ``False`` 객체. 이 객체는 메서드가 없습니다. 참조 횟수와 관련해서는 다른 객체와 마찬가지로 처리해야 합니다."
4245

43-
#: ../Doc/c-api/bool.rst:27
46+
#: ../Doc/c-api/bool.rst:28
4447
msgid ""
4548
"The Python ``True`` object. This object has no methods. It needs to be "
4649
"treated just like any other object with respect to reference counts."
4750
msgstr "파이썬 ``True`` 객체. 이 객체는 메서드가 없습니다. 참조 횟수와 관련해서는 다른 객체와 마찬가지로 처리해야 합니다."
4851

49-
#: ../Doc/c-api/bool.rst:33
52+
#: ../Doc/c-api/bool.rst:34
5053
msgid ""
5154
"Return :const:`Py_False` from a function, properly incrementing its "
5255
"reference count."
5356
msgstr "함수에서 :const:`Py_False`\\를 반환하고, 참조 횟수를 적절하게 증가시킵니다."
5457

55-
#: ../Doc/c-api/bool.rst:39
58+
#: ../Doc/c-api/bool.rst:40
5659
msgid ""
5760
"Return :const:`Py_True` from a function, properly incrementing its "
5861
"reference count."
5962
msgstr "함수에서 :const:`Py_True`\\를 반환하고, 참조 횟수를 적절하게 증가시킵니다."
6063

61-
#: ../Doc/c-api/bool.rst:45
64+
#: ../Doc/c-api/bool.rst:46
6265
msgid ""
6366
"Return a new reference to :const:`Py_True` or :const:`Py_False` depending"
6467
" on the truth value of *v*."

c-api/bytearray.po

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2019-12-19 18:31+0900\n"
10+
"POT-Creation-Date: 2021-04-08 08:18+0900\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
1313
"Language-Team: Korean (https://python.flowdas.com)\n"
@@ -16,67 +16,69 @@ msgstr ""
1616
"Content-Transfer-Encoding: 8bit\n"
1717
"Generated-By: Babel 2.7.0\n"
1818

19-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:6
19+
#: ../Doc/c-api/bytearray.rst:6
2020
msgid "Byte Array Objects"
2121
msgstr "바이트 배열 객체"
2222

23-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:13
23+
#: ../Doc/c-api/bytearray.rst:13
2424
msgid "This subtype of :c:type:`PyObject` represents a Python bytearray object."
2525
msgstr "이 :c:type:`PyObject`\\의 서브 형은 파이썬 bytearray 객체를 나타냅니다."
2626

27-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:18
27+
#: ../Doc/c-api/bytearray.rst:18
2828
msgid ""
2929
"This instance of :c:type:`PyTypeObject` represents the Python bytearray "
3030
"type; it is the same object as :class:`bytearray` in the Python layer."
3131
msgstr ""
3232
"이 :c:type:`PyTypeObject` 인스턴스는 파이썬 bytearray 형을 나타냅니다; 파이썬 계층의 "
3333
":class:`bytearray`\\와 같은 객체입니다."
3434

35-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:23
35+
#: ../Doc/c-api/bytearray.rst:23
3636
msgid "Type check macros"
3737
msgstr "형 검사 매크로"
3838

39-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:27
39+
#: ../Doc/c-api/bytearray.rst:27
40+
#, fuzzy
4041
msgid ""
4142
"Return true if the object *o* is a bytearray object or an instance of a "
42-
"subtype of the bytearray type."
43+
"subtype of the bytearray type. This function always succeeds."
4344
msgstr "객체 *o*\\가 bytearray 객체이거나 bytearray 형의 서브 형 인스턴스면 참을 반환합니다."
4445

45-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:33
46+
#: ../Doc/c-api/bytearray.rst:33
47+
#, fuzzy
4648
msgid ""
4749
"Return true if the object *o* is a bytearray object, but not an instance "
48-
"of a subtype of the bytearray type."
50+
"of a subtype of the bytearray type. This function always succeeds."
4951
msgstr "객체 *o*\\가 bytearray 객체이지만, bytearray 형의 서브 형 인스턴스는 아니면 참을 반환합니다."
5052

51-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:38
53+
#: ../Doc/c-api/bytearray.rst:38
5254
msgid "Direct API functions"
5355
msgstr "직접 API 함수"
5456

55-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:42
57+
#: ../Doc/c-api/bytearray.rst:42
5658
msgid ""
5759
"Return a new bytearray object from any object, *o*, that implements the "
5860
":ref:`buffer protocol <bufferobjects>`."
5961
msgstr ""
6062
":ref:`버퍼 프로토콜 <bufferobjects>`\\을 구현하는 임의의 객체(*o*)로부터 써서 새로운 bytearray "
6163
"객체를 돌려줍니다."
6264

63-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:50
65+
#: ../Doc/c-api/bytearray.rst:50
6466
msgid ""
6567
"Create a new bytearray object from *string* and its length, *len*. On "
6668
"failure, ``NULL`` is returned."
6769
msgstr ""
6870
"*string*\\과 그 길이(*len*)로부터 새로운 bytearray 객체를 만듭니다. 실패하면, ``NULL``\\이 "
6971
"반환됩니다."
7072

71-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:56
73+
#: ../Doc/c-api/bytearray.rst:56
7274
msgid "Concat bytearrays *a* and *b* and return a new bytearray with the result."
7375
msgstr "바이트 배열 *a* 와 *b*\\를 이어붙여 새로운 bytearray로 반환합니다."
7476

75-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:61
77+
#: ../Doc/c-api/bytearray.rst:61
7678
msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer."
7779
msgstr "``NULL`` 포인터를 확인한 후 *bytearray*\\의 크기를 반환합니다."
7880

79-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:66
81+
#: ../Doc/c-api/bytearray.rst:66
8082
msgid ""
8183
"Return the contents of *bytearray* as a char array after checking for a "
8284
"``NULL`` pointer. The returned array always has an extra null byte "
@@ -85,23 +87,23 @@ msgstr ""
8587
"``NULL`` 포인터를 확인한 후 *bytearray*\\의 내용을 char 배열로 반환합니다. 반환되는 배열에는 항상 여분의 널"
8688
" 바이트가 추가됩니다."
8789

88-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:73
90+
#: ../Doc/c-api/bytearray.rst:73
8991
msgid "Resize the internal buffer of *bytearray* to *len*."
9092
msgstr "*bytearray*\\의 내부 버퍼의 크기를 *len*\\으로 조정합니다."
9193

92-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:76
94+
#: ../Doc/c-api/bytearray.rst:76
9395
msgid "Macros"
9496
msgstr "매크로"
9597

96-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:78
98+
#: ../Doc/c-api/bytearray.rst:78
9799
msgid "These macros trade safety for speed and they don't check pointers."
98100
msgstr "이 매크로는 속도를 위해 안전을 희생하며 포인터를 확인하지 않습니다."
99101

100-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:82
102+
#: ../Doc/c-api/bytearray.rst:82
101103
msgid "Macro version of :c:func:`PyByteArray_AsString`."
102104
msgstr ":c:func:`PyByteArray_AsString`\\의 매크로 버전."
103105

104-
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:87
106+
#: ../Doc/c-api/bytearray.rst:87
105107
msgid "Macro version of :c:func:`PyByteArray_Size`."
106108
msgstr ":c:func:`PyByteArray_Size`\\의 매크로 버전."
107109

0 commit comments

Comments
 (0)