@@ -17,12 +17,10 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/msvcrt.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!msvcrt` --- Useful routines from the MS VC++ runtime"
22
- msgstr ":mod:`msvcrt` --- MS VC++ 런타임의 유용한 루틴"
21
+ msgstr ":mod:`! msvcrt` --- MS VC++ 런타임의 유용한 루틴"
23
22
24
23
#: ../../library/msvcrt.rst:12
25
- #, fuzzy
26
24
msgid ""
27
25
"These functions provide access to some useful capabilities on Windows "
28
26
"platforms. Some higher-level modules use these functions to build the "
@@ -61,7 +59,6 @@ msgid "File Operations"
61
59
msgstr "파일 연산"
62
60
63
61
#: ../../library/msvcrt.rst:38
64
- #, fuzzy
65
62
msgid ""
66
63
"Lock part of a file based on file descriptor *fd* from the C runtime. "
67
64
"Raises :exc:`OSError` on failure. The locked region of the file extends "
@@ -73,7 +70,7 @@ msgid ""
73
70
msgstr ""
74
71
"C 런타임의 파일 기술자 *fd*\\ 를 기반으로 파일 일부를 잠급니다. 실패하면 :exc:`OSError`\\ 를 발생시킵니다. "
75
72
"파일의 잠긴 영역은 현재 파일 위치에서부터 *nbytes* 바이트까지며, 파일 끝을 넘어 계속될 수 있습니다. *mode*\\ 는 "
76
- "아래에 나열된 :const:`LK_\\ *` 상수 중 하나여야 합니다. 파일의 여러 영역이 동시에 잠길 수 있지만 겹칠 수는 "
73
+ "아래에 나열된 :const:`! LK_\\ *` 상수 중 하나여야 합니다. 파일의 여러 영역이 동시에 잠길 수 있지만 겹칠 수는 "
77
74
"없습니다. 인접한 영역은 병합되지 않습니다; 개별적으로 잠금을 해제해야 합니다."
78
75
79
76
#: ../../library/msvcrt.rst:45
@@ -85,7 +82,6 @@ msgstr ""
85
82
"``msvcrt.locking``\\ 을 발생시킵니다."
86
83
87
84
#: ../../library/msvcrt.rst:51
88
- #, fuzzy
89
85
msgid ""
90
86
"Locks the specified bytes. If the bytes cannot be locked, the program "
91
87
"immediately tries again after 1 second. If, after 10 attempts, the bytes "
@@ -114,7 +110,6 @@ msgstr ""
114
110
":const:`os.O_TEXT` 여야 합니다; 바이너리는, :const:`os.O_BINARY` 여야 합니다."
115
111
116
112
#: ../../library/msvcrt.rst:77
117
- #, fuzzy
118
113
msgid ""
119
114
"Create a C runtime file descriptor from the file handle *handle*. The "
120
115
"*flags* parameter should be a bitwise OR of :const:`os.O_APPEND`, "
@@ -123,9 +118,9 @@ msgid ""
123
118
" to create a file object."
124
119
msgstr ""
125
120
"파일 핸들 *handle*\\ 에서 C 런타임 파일 기술자를 만듭니다. *flags* 매개 변수는 "
126
- ":const:`os.O_APPEND`, :const:`os.O_RDONLY` 및 :const:`os.O_TEXT`\\ 의 비트별 OR "
127
- " 여야 합니다. 반환된 파일 기술자는 :func :`os.fdopen `\\ 에 대한 매개 변수로 사용되어 파일 객체를 만들 수 "
128
- "있습니다."
121
+ ":const:`os.O_APPEND`, :const:`os.O_RDONLY`, :const:`os.O_TEXT` 및 "
122
+ ":const :`os.O_NOINHERIT `\\ 의 비트별 OR 여야 합니다. 반환된 파일 기술자는 "
123
+ ":func:`os.fdopen` \\ 에 대한 매개 변수로 사용되어 파일 객체를 만들 수 있습니다."
129
124
130
125
#: ../../library/msvcrt.rst:83
131
126
msgid ""
@@ -142,7 +137,6 @@ msgstr ""
142
137
"``msvcrt.open_osfhandle``\\ 을 발생시킵니다."
143
138
144
139
#: ../../library/msvcrt.rst:91
145
- #, fuzzy
146
140
msgid ""
147
141
"Return the file handle for the file descriptor *fd*. Raises "
148
142
":exc:`OSError` if *fd* is not recognized."
@@ -159,14 +153,12 @@ msgid "Console I/O"
159
153
msgstr "콘솔 I/O"
160
154
161
155
#: ../../library/msvcrt.rst:105
162
- #, fuzzy
163
156
msgid ""
164
157
"Returns a nonzero value if a keypress is waiting to be read. Otherwise, "
165
158
"return 0."
166
- msgstr "읽을 수 있는 키 누르기가 대기 중이면 ``True`` \\ 를 반환합니다."
159
+ msgstr "읽을 수 있는 키 누르기가 대기 중이면 0이 아닌 값을 반환합니다. 그렇지 않으면, 0을 반환합니다."
167
160
168
161
#: ../../library/msvcrt.rst:111
169
- #, fuzzy
170
162
msgid ""
171
163
"Read a keypress and return the resulting character as a byte string. "
172
164
"Nothing is echoed to the console. This call will block if a keypress is "
@@ -185,7 +177,6 @@ msgid "Wide char variant of :func:`getch`, returning a Unicode value."
185
177
msgstr "유니코드 값을 반환하는 :func:`getch`\\ 의 광폭 문자 변형."
186
178
187
179
#: ../../library/msvcrt.rst:126
188
- #, fuzzy
189
180
msgid ""
190
181
"Similar to :func:`getch`, but the keypress will be echoed if it "
191
182
"represents a printable character."
@@ -221,7 +212,6 @@ msgid "Other Functions"
221
212
msgstr "기타 함수"
222
213
223
214
#: ../../library/msvcrt.rst:164
224
- #, fuzzy
225
215
msgid ""
226
216
"Force the :c:func:`malloc` heap to clean itself up and return unused "
227
217
"blocks to the operating system. On failure, this raises :exc:`OSError`."
0 commit comments