Skip to content

Commit ae2362b

Browse files
committed
3.8.1 updates
1 parent 2deec82 commit ae2362b

File tree

131 files changed

+29992
-24257
lines changed

Some content is hidden

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

131 files changed

+29992
-24257
lines changed

c-api/arg.po

+491-229
Large diffs are not rendered by default.

c-api/buffer.po

+192-163
Large diffs are not rendered by default.

c-api/bytearray.po

+31-28
Original file line numberDiff line numberDiff line change
@@ -7,98 +7,101 @@ 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: 2019-12-19 18:31+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"
1414
"MIME-Version: 1.0\n"
1515
"Content-Type: text/plain; charset=utf-8\n"
1616
"Content-Transfer-Encoding: 8bit\n"
17-
"Generated-By: Babel 2.5.1\n"
17+
"Generated-By: Babel 2.7.0\n"
1818

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

23-
#: ../Doc/c-api/bytearray.rst:13
23+
#: /Users/flowdas/works/docs/python/src/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-
#: ../Doc/c-api/bytearray.rst:18
27+
#: /Users/flowdas/works/docs/python/src/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-
#: ../Doc/c-api/bytearray.rst:23
35+
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:23
3636
msgid "Type check macros"
3737
msgstr "형 검사 매크로"
3838

39-
#: ../Doc/c-api/bytearray.rst:27
39+
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:27
4040
msgid ""
4141
"Return true if the object *o* is a bytearray object or an instance of a "
4242
"subtype of the bytearray type."
4343
msgstr "객체 *o*\\가 bytearray 객체이거나 bytearray 형의 서브 형 인스턴스면 참을 반환합니다."
4444

45-
#: ../Doc/c-api/bytearray.rst:33
45+
#: /Users/flowdas/works/docs/python/src/Doc/c-api/bytearray.rst:33
4646
msgid ""
4747
"Return true if the object *o* is a bytearray object, but not an instance "
4848
"of a subtype of the bytearray type."
4949
msgstr "객체 *o*\\가 bytearray 객체이지만, bytearray 형의 서브 형 인스턴스는 아니면 참을 반환합니다."
5050

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

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

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

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)