-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathfile.po
More file actions
113 lines (104 loc) · 6.53 KB
/
file.po
File metadata and controls
113 lines (104 loc) · 6.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# 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: 2017-11-26 18:49+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.5.1\n"
#: ../Doc/c-api/file.rst:6
msgid "File Objects"
msgstr "파일 객체"
#: ../Doc/c-api/file.rst:10
msgid ""
"These APIs are a minimal emulation of the Python 2 C API for built-in "
"file objects, which used to rely on the buffered I/O (:c:type:`FILE\\*`) "
"support from the C standard library. In Python 3, files and streams use "
"the new :mod:`io` module, which defines several layers over the low-level"
" unbuffered I/O of the operating system. The functions described below "
"are convenience C wrappers over these new APIs, and meant mostly for "
"internal error reporting in the interpreter; third-party code is advised "
"to access the :mod:`io` APIs instead."
msgstr ""
"이 API는 C 표준 라이브러리의 버퍼링 된 I/O (:c:type:`FILE\\*`) 지원에 의존하는 내장 파일 객체에 대한 파이썬 2"
" C API의 최소 에뮬레이션입니다. 파이썬 3에서, 파일과 스트림은 새로운 :mod:`io` 모듈을 사용합니다. 이 모듈은 운영 체제의"
" 저수준 버퍼링 되지 않은 I/O 위에 여러 계층을 정의합니다. 아래에서 설명하는 함수는 이러한 새로운 API에 대한 편리한 C "
"래퍼이며, 주로 인터프리터의 내부 오류 보고를 위한 것입니다; 제삼자 코드는 대신 :mod:`io` API에 액세스하는 것이 좋습니다."
#: ../Doc/c-api/file.rst:22
msgid ""
"Create a Python file object from the file descriptor of an already opened"
" file *fd*. The arguments *name*, *encoding*, *errors* and *newline* can"
" be *NULL* to use the defaults; *buffering* can be *-1* to use the "
"default. *name* is ignored and kept for backward compatibility. Return "
"*NULL* on failure. For a more comprehensive description of the arguments,"
" please refer to the :func:`io.open` function documentation."
msgstr ""
"이미 열려있는 파일의 파일 기술자 *fd*\\로 파이썬 파일 객체를 만듭니다. 인자 *name*, *encoding*, *errors* "
"및 *newline*\\은 기본값을 사용하기 위해 *NULL* 일 수 있습니다; *buffering*\\은 기본값을 사용하기 위해 "
"*-1* 일 수 있습니다. *name*\\은 무시되고, 이전 버전과의 호환성을 위해 유지됩니다. 실패 시 *NULL*\\를 반환합니다. "
"인자에 대한 더 자세한 설명은 :func:`io.open` 함수 설명서를 참조하십시오."
#: ../Doc/c-api/file.rst:31
msgid ""
"Since Python streams have their own buffering layer, mixing them with OS-"
"level file descriptors can produce various issues (such as unexpected "
"ordering of data)."
msgstr ""
"파이썬 스트림이 자체적인 버퍼링 계층을 가지고 있으므로, OS 수준의 파일 기술자와 혼합하면 여러 예기치 못한 문제가 발생할 수 있습니다"
" (가령 데이터의 예상치 못한 순서)."
#: ../Doc/c-api/file.rst:35
msgid "Ignore *name* attribute."
msgstr "*name* 어트리뷰트를 무시합니다."
#: ../Doc/c-api/file.rst:41
msgid ""
"Return the file descriptor associated with *p* as an :c:type:`int`. If "
"the object is an integer, its value is returned. If not, the object's "
":meth:`~io.IOBase.fileno` method is called if it exists; the method must "
"return an integer, which is returned as the file descriptor value. Sets "
"an exception and returns ``-1`` on failure."
msgstr ""
"*p*\\와 관련된 파일 기술자를 :c:type:`int`\\로 반환합니다. 객체가 정수면, 값이 반환됩니다. 그렇지 않으면 객체의 "
":meth:`~io.IOBase.fileno` 메서드가 있으면 호출됩니다; 메서드는 반드시 정수를 반환해야 하고, 그 값이 파일 기술자 "
"값으로 반환됩니다. 실패하면 예외를 설정하고 ``-1``\\을 반환합니다."
#: ../Doc/c-api/file.rst:52
msgid ""
"Equivalent to ``p.readline([n])``, this function reads one line from the "
"object *p*. *p* may be a file object or any object with a "
":meth:`~io.IOBase.readline` method. If *n* is ``0``, exactly one line is"
" read, regardless of the length of the line. If *n* is greater than "
"``0``, no more than *n* bytes will be read from the file; a partial line "
"can be returned. In both cases, an empty string is returned if the end "
"of the file is reached immediately. If *n* is less than ``0``, however, "
"one line is read regardless of length, but :exc:`EOFError` is raised if "
"the end of the file is reached immediately."
msgstr ""
"``p.readline([n])``\\과 동등합니다. 이 함수는 객체 *p*\\에서 한 줄을 읽습니다. *p*\\는 파일 객체나 "
":meth:`~io.IOBase.readline` 메서드가 있는 임의의 객체일 수 있습니다. *n*\\이 ``0``\\이면, 줄의 길이와"
" 관계없이 정확히 한 줄을 읽습니다. *n*\\이 ``0``\\보다 크면, *n* 바이트 이상을 파일에서 읽지 않습니다; 불완전한 줄이 "
"반환될 수 있습니다. 두 경우 모두, 파일 끝에 즉시 도달하면 빈 문자열이 반환됩니다. 그러나 *n*\\이 ``0``\\보다 작으면, "
"길이와 관계없이 한 줄을 읽지만, 파일 끝에 즉시 도달하면 :exc:`EOFError`\\가 발생합니다."
#: ../Doc/c-api/file.rst:67
msgid ""
"Write object *obj* to file object *p*. The only supported flag for "
"*flags* is :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object"
" is written instead of the :func:`repr`. Return ``0`` on success or "
"``-1`` on failure; the appropriate exception will be set."
msgstr ""
"객체 *obj*\\를 파일 객체 *p*\\에 씁니다. *flags*\\에서 지원되는 유일한 플래그는 "
":const:`Py_PRINT_RAW`\\입니다; 주어지면, :func:`repr` 대신 객체의 :func:`str`\\이 기록됩니다. "
"성공하면 ``0``\\을, 실패하면 ``-1``\\을 반환합니다; 적절한 예외가 설정됩니다."
#: ../Doc/c-api/file.rst:75
msgid ""
"Write string *s* to file object *p*. Return ``0`` on success or ``-1`` "
"on failure; the appropriate exception will be set."
msgstr ""
"문자열 *s*\\를 파일 객체 *p*\\에 씁니다. 성공하면 ``0``\\을 반환하고, 실패하면 ``-1``\\을 반환합니다; 적절한 "
"예외가 설정됩니다."