-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathiter.po
More file actions
48 lines (42 loc) · 2.18 KB
/
iter.po
File metadata and controls
48 lines (42 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2017, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-12-19 18:31+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dong-gweon Oh <flowdas@gmail.com>\n"
"Language-Team: Korean (https://python.flowdas.com)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.7.0\n"
#: /Users/flowdas/works/docs/python/src/Doc/c-api/iter.rst:6
msgid "Iterator Protocol"
msgstr "이터레이터 프로토콜"
#: /Users/flowdas/works/docs/python/src/Doc/c-api/iter.rst:8
msgid "There are two functions specifically for working with iterators."
msgstr "특히 이터레이터를 사용하기 위한 두 함수가 있습니다."
#: /Users/flowdas/works/docs/python/src/Doc/c-api/iter.rst:12
msgid "Return true if the object *o* supports the iterator protocol."
msgstr "객체 *o*\\가 이터레이터 프로토콜을 지원하면 참을 돌려줍니다."
#: /Users/flowdas/works/docs/python/src/Doc/c-api/iter.rst:17
msgid ""
"Return the next value from the iteration *o*. The object must be an "
"iterator (it is up to the caller to check this). If there are no "
"remaining values, returns ``NULL`` with no exception set. If an error "
"occurs while retrieving the item, returns ``NULL`` and passes along the "
"exception."
msgstr ""
"이터레이션 *o*\\에서 다음 값을 반환합니다. 객체는 이터레이터 여야 합니다 (이것을 확인하는 것은 호출자 책임입니다). 남은 "
"값이 없으면, 예외가 설정되지 않은 상태로 ``NULL``\\을 반환합니다. 항목을 꺼내는 동안 에러가 발생하면, "
"``NULL``\\을 반환하고 예외를 전달합니다."
#: /Users/flowdas/works/docs/python/src/Doc/c-api/iter.rst:22
msgid ""
"To write a loop which iterates over an iterator, the C code should look "
"something like this::"
msgstr "이터레이터를 이터레이트하는 루프를 작성하려면, C 코드는 이런 식으로 되어야 합니다::"