-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathasyncio-subprocess.po
457 lines (386 loc) · 15.2 KB
/
asyncio-subprocess.po
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# 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>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Language-Team: Hungarian (https://www.transifex.com/python-doc/teams/5390/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../../library/asyncio-subprocess.rst:6
msgid "Subprocess"
msgstr ""
#: ../../library/asyncio-subprocess.rst:9
msgid "Windows event loop"
msgstr ""
#: ../../library/asyncio-subprocess.rst:11
msgid ""
"On Windows, the default event loop is :class:`SelectorEventLoop` which does "
"not support subprocesses. :class:`ProactorEventLoop` should be used instead."
" Example to use it on Windows::"
msgstr ""
#: ../../library/asyncio-subprocess.rst:23
msgid ""
":ref:`Available event loops <asyncio-event-loops>` and :ref:`Platform "
"support <asyncio-platform-support>`."
msgstr ""
#: ../../library/asyncio-subprocess.rst:28
msgid "Create a subprocess: high-level API using Process"
msgstr ""
#: ../../library/asyncio-subprocess.rst:32
msgid "Create a subprocess."
msgstr ""
#: ../../library/asyncio-subprocess.rst:34
msgid ""
"The *limit* parameter sets the buffer limit passed to the "
":class:`StreamReader`. See :meth:`AbstractEventLoop.subprocess_exec` for "
"other parameters."
msgstr ""
#: ../../library/asyncio-subprocess.rst:38
#: ../../library/asyncio-subprocess.rst:50
msgid "Return a :class:`~asyncio.subprocess.Process` instance."
msgstr ""
#: ../../library/asyncio-subprocess.rst:40
#: ../../library/asyncio-subprocess.rst:59
msgid "This function is a :ref:`coroutine <coroutine>`."
msgstr ""
#: ../../library/asyncio-subprocess.rst:44
msgid "Run the shell command *cmd*."
msgstr ""
#: ../../library/asyncio-subprocess.rst:46
msgid ""
"The *limit* parameter sets the buffer limit passed to the "
":class:`StreamReader`. See :meth:`AbstractEventLoop.subprocess_shell` for "
"other parameters."
msgstr ""
#: ../../library/asyncio-subprocess.rst:52
#: ../../library/asyncio-subprocess.rst:135
msgid ""
"It is the application's responsibility to ensure that all whitespace and "
"metacharacters are quoted appropriately to avoid `shell injection "
"<https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_ "
"vulnerabilities. The :func:`shlex.quote` function can be used to properly "
"escape whitespace and shell metacharacters in strings that are going to be "
"used to construct shell commands."
msgstr ""
#: ../../library/asyncio-subprocess.rst:61
msgid ""
"Use the :meth:`AbstractEventLoop.connect_read_pipe` and "
":meth:`AbstractEventLoop.connect_write_pipe` methods to connect pipes."
msgstr ""
#: ../../library/asyncio-subprocess.rst:66
msgid "Create a subprocess: low-level API using subprocess.Popen"
msgstr ""
#: ../../library/asyncio-subprocess.rst:68
msgid "Run subprocesses asynchronously using the :mod:`subprocess` module."
msgstr ""
#: ../../library/asyncio-subprocess.rst:72
msgid ""
"Create a subprocess from one or more string arguments (character strings or "
"bytes strings encoded to the :ref:`filesystem encoding <filesystem-"
"encoding>`), where the first string specifies the program to execute, and "
"the remaining strings specify the program's arguments. (Thus, together the "
"string arguments form the ``sys.argv`` value of the program, assuming it is "
"a Python script.) This is similar to the standard library "
":class:`subprocess.Popen` class called with shell=False and the list of "
"strings passed as the first argument; however, where "
":class:`~subprocess.Popen` takes a single argument which is list of strings,"
" :func:`subprocess_exec` takes multiple string arguments."
msgstr ""
#: ../../library/asyncio-subprocess.rst:83
#: ../../library/asyncio-subprocess.rst:126
msgid ""
"The *protocol_factory* must instantiate a subclass of the "
":class:`asyncio.SubprocessProtocol` class."
msgstr ""
#: ../../library/asyncio-subprocess.rst:86
msgid "Other parameters:"
msgstr ""
#: ../../library/asyncio-subprocess.rst:88
msgid ""
"*stdin*: Either a file-like object representing the pipe to be connected to "
"the subprocess's standard input stream using "
":meth:`~AbstractEventLoop.connect_write_pipe`, or the constant "
":const:`subprocess.PIPE` (the default). By default a new pipe will be "
"created and connected."
msgstr ""
#: ../../library/asyncio-subprocess.rst:94
msgid ""
"*stdout*: Either a file-like object representing the pipe to be connected to"
" the subprocess's standard output stream using "
":meth:`~AbstractEventLoop.connect_read_pipe`, or the constant "
":const:`subprocess.PIPE` (the default). By default a new pipe will be "
"created and connected."
msgstr ""
#: ../../library/asyncio-subprocess.rst:100
msgid ""
"*stderr*: Either a file-like object representing the pipe to be connected to"
" the subprocess's standard error stream using "
":meth:`~AbstractEventLoop.connect_read_pipe`, or one of the constants "
":const:`subprocess.PIPE` (the default) or :const:`subprocess.STDOUT`. By "
"default a new pipe will be created and connected. When "
":const:`subprocess.STDOUT` is specified, the subprocess's standard error "
"stream will be connected to the same pipe as the standard output stream."
msgstr ""
#: ../../library/asyncio-subprocess.rst:108
msgid ""
"All other keyword arguments are passed to :class:`subprocess.Popen` without "
"interpretation, except for *bufsize*, *universal_newlines* and *shell*, "
"which should not be specified at all."
msgstr ""
#: ../../library/asyncio-subprocess.rst:112
#: ../../library/asyncio-subprocess.rst:132
msgid ""
"Returns a pair of ``(transport, protocol)``, where *transport* is an "
"instance of :class:`BaseSubprocessTransport`."
msgstr ""
#: ../../library/asyncio-subprocess.rst:115
#: ../../library/asyncio-subprocess.rst:142
#: ../../library/asyncio-subprocess.rst:204
#: ../../library/asyncio-subprocess.rst:232
msgid "This method is a :ref:`coroutine <coroutine>`."
msgstr ""
#: ../../library/asyncio-subprocess.rst:117
msgid ""
"See the constructor of the :class:`subprocess.Popen` class for parameters."
msgstr ""
#: ../../library/asyncio-subprocess.rst:121
msgid ""
"Create a subprocess from *cmd*, which is a character string or a bytes "
"string encoded to the :ref:`filesystem encoding <filesystem-encoding>`, "
"using the platform's \"shell\" syntax. This is similar to the standard "
"library :class:`subprocess.Popen` class called with ``shell=True``."
msgstr ""
#: ../../library/asyncio-subprocess.rst:129
msgid ""
"See :meth:`~AbstractEventLoop.subprocess_exec` for more details about the "
"remaining arguments."
msgstr ""
#: ../../library/asyncio-subprocess.rst:146
msgid ""
"The :meth:`AbstractEventLoop.connect_read_pipe` and "
":meth:`AbstractEventLoop.connect_write_pipe` methods."
msgstr ""
#: ../../library/asyncio-subprocess.rst:151
msgid "Constants"
msgstr ""
#: ../../library/asyncio-subprocess.rst:155
msgid ""
"Special value that can be used as the *stdin*, *stdout* or *stderr* argument"
" to :func:`create_subprocess_shell` and :func:`create_subprocess_exec` and "
"indicates that a pipe to the standard stream should be opened."
msgstr ""
#: ../../library/asyncio-subprocess.rst:161
msgid ""
"Special value that can be used as the *stderr* argument to "
":func:`create_subprocess_shell` and :func:`create_subprocess_exec` and "
"indicates that standard error should go into the same handle as standard "
"output."
msgstr ""
#: ../../library/asyncio-subprocess.rst:168
msgid ""
"Special value that can be used as the *stdin*, *stdout* or *stderr* argument"
" to :func:`create_subprocess_shell` and :func:`create_subprocess_exec` and "
"indicates that the special file :data:`os.devnull` will be used."
msgstr ""
#: ../../library/asyncio-subprocess.rst:174
msgid "Process"
msgstr ""
#: ../../library/asyncio-subprocess.rst:178
msgid ""
"A subprocess created by the :func:`create_subprocess_exec` or the "
":func:`create_subprocess_shell` function."
msgstr ""
#: ../../library/asyncio-subprocess.rst:181
msgid ""
"The API of the :class:`~asyncio.subprocess.Process` class was designed to be"
" close to the API of the :class:`subprocess.Popen` class, but there are some"
" differences:"
msgstr ""
#: ../../library/asyncio-subprocess.rst:185
msgid "There is no explicit :meth:`~subprocess.Popen.poll` method"
msgstr ""
#: ../../library/asyncio-subprocess.rst:186
msgid ""
"The :meth:`~subprocess.Popen.communicate` and :meth:`~subprocess.Popen.wait`"
" methods don't take a *timeout* parameter: use the :func:`wait_for` function"
msgstr ""
#: ../../library/asyncio-subprocess.rst:189
msgid ""
"The *universal_newlines* parameter is not supported (only bytes strings are "
"supported)"
msgstr ""
#: ../../library/asyncio-subprocess.rst:191
msgid ""
"The :meth:`~asyncio.subprocess.Process.wait` method of the "
":class:`~asyncio.subprocess.Process` class is asynchronous whereas the "
":meth:`~subprocess.Popen.wait` method of the :class:`~subprocess.Popen` "
"class is implemented as a busy loop."
msgstr ""
#: ../../library/asyncio-subprocess.rst:196
msgid ""
"This class is :ref:`not thread safe <asyncio-multithreading>`. See also the "
":ref:`Subprocess and threads <asyncio-subprocess-threads>` section."
msgstr ""
#: ../../library/asyncio-subprocess.rst:201
msgid ""
"Wait for child process to terminate. Set and return :attr:`returncode` "
"attribute."
msgstr ""
#: ../../library/asyncio-subprocess.rst:208
msgid ""
"This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE`` and the "
"child process generates enough output to a pipe such that it blocks waiting "
"for the OS pipe buffer to accept more data. Use the :meth:`communicate` "
"method when using pipes to avoid that."
msgstr ""
#: ../../library/asyncio-subprocess.rst:215
msgid ""
"Interact with process: Send data to stdin. Read data from stdout and "
"stderr, until end-of-file is reached. Wait for process to terminate. The "
"optional *input* argument should be data to be sent to the child process, or"
" ``None``, if no data should be sent to the child. The type of *input* must"
" be bytes."
msgstr ""
#: ../../library/asyncio-subprocess.rst:221
msgid ":meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``."
msgstr ""
#: ../../library/asyncio-subprocess.rst:223
msgid ""
"If a :exc:`BrokenPipeError` or :exc:`ConnectionResetError` exception is "
"raised when writing *input* into stdin, the exception is ignored. It occurs "
"when the process exits before all data are written into stdin."
msgstr ""
#: ../../library/asyncio-subprocess.rst:227
msgid ""
"Note that if you want to send data to the process's stdin, you need to "
"create the Process object with ``stdin=PIPE``. Similarly, to get anything "
"other than ``None`` in the result tuple, you need to give ``stdout=PIPE`` "
"and/or ``stderr=PIPE`` too."
msgstr ""
#: ../../library/asyncio-subprocess.rst:236
msgid ""
"The data read is buffered in memory, so do not use this method if the data "
"size is large or unlimited."
msgstr ""
#: ../../library/asyncio-subprocess.rst:239
msgid ""
"The method now ignores :exc:`BrokenPipeError` and "
":exc:`ConnectionResetError`."
msgstr ""
#: ../../library/asyncio-subprocess.rst:245
msgid "Sends the signal *signal* to the child process."
msgstr ""
#: ../../library/asyncio-subprocess.rst:249
msgid ""
"On Windows, :py:data:`SIGTERM` is an alias for :meth:`terminate`. "
"``CTRL_C_EVENT`` and ``CTRL_BREAK_EVENT`` can be sent to processes started "
"with a *creationflags* parameter which includes "
"``CREATE_NEW_PROCESS_GROUP``."
msgstr ""
#: ../../library/asyncio-subprocess.rst:256
msgid ""
"Stop the child. On Posix OSs the method sends :py:data:`signal.SIGTERM` to "
"the child. On Windows the Win32 API function :c:func:`TerminateProcess` is "
"called to stop the child."
msgstr ""
#: ../../library/asyncio-subprocess.rst:262
msgid ""
"Kills the child. On Posix OSs the function sends :py:data:`SIGKILL` to the "
"child. On Windows :meth:`kill` is an alias for :meth:`terminate`."
msgstr ""
#: ../../library/asyncio-subprocess.rst:267
msgid ""
"Standard input stream (:class:`StreamWriter`), ``None`` if the process was "
"created with ``stdin=None``."
msgstr ""
#: ../../library/asyncio-subprocess.rst:272
msgid ""
"Standard output stream (:class:`StreamReader`), ``None`` if the process was "
"created with ``stdout=None``."
msgstr ""
#: ../../library/asyncio-subprocess.rst:277
msgid ""
"Standard error stream (:class:`StreamReader`), ``None`` if the process was "
"created with ``stderr=None``."
msgstr ""
#: ../../library/asyncio-subprocess.rst:282
msgid ""
"Use the :meth:`communicate` method rather than :attr:`.stdin.write <stdin>`,"
" :attr:`.stdout.read <stdout>` or :attr:`.stderr.read <stderr>` to avoid "
"deadlocks due to streams pausing reading or writing and blocking the child "
"process."
msgstr ""
#: ../../library/asyncio-subprocess.rst:289
msgid "The identifier of the process."
msgstr ""
#: ../../library/asyncio-subprocess.rst:291
msgid ""
"Note that for processes created by the :func:`create_subprocess_shell` "
"function, this attribute is the process identifier of the spawned shell."
msgstr ""
#: ../../library/asyncio-subprocess.rst:296
msgid ""
"Return code of the process when it exited. A ``None`` value indicates that "
"the process has not terminated yet."
msgstr ""
#: ../../library/asyncio-subprocess.rst:299
msgid ""
"A negative value ``-N`` indicates that the child was terminated by signal "
"``N`` (Unix only)."
msgstr ""
#: ../../library/asyncio-subprocess.rst:306
msgid "Subprocess and threads"
msgstr ""
#: ../../library/asyncio-subprocess.rst:308
msgid ""
"asyncio supports running subprocesses from different threads, but there are "
"limits:"
msgstr ""
#: ../../library/asyncio-subprocess.rst:311
msgid "An event loop must run in the main thread"
msgstr ""
#: ../../library/asyncio-subprocess.rst:312
msgid ""
"The child watcher must be instantiated in the main thread, before executing "
"subprocesses from other threads. Call the :func:`get_child_watcher` function"
" in the main thread to instantiate the child watcher."
msgstr ""
#: ../../library/asyncio-subprocess.rst:316
msgid "The :class:`asyncio.subprocess.Process` class is not thread safe."
msgstr ""
#: ../../library/asyncio-subprocess.rst:320
msgid ""
"The :ref:`Concurrency and multithreading in asyncio <asyncio-"
"multithreading>` section."
msgstr ""
#: ../../library/asyncio-subprocess.rst:325
msgid "Subprocess examples"
msgstr ""
#: ../../library/asyncio-subprocess.rst:328
msgid "Subprocess using transport and protocol"
msgstr ""
#: ../../library/asyncio-subprocess.rst:330
msgid ""
"Example of a subprocess protocol using to get the output of a subprocess and"
" to wait for the subprocess exit. The subprocess is created by the "
":meth:`AbstractEventLoop.subprocess_exec` method::"
msgstr ""
#: ../../library/asyncio-subprocess.rst:384
msgid "Subprocess using streams"
msgstr ""
#: ../../library/asyncio-subprocess.rst:386
msgid ""
"Example using the :class:`~asyncio.subprocess.Process` class to control the "
"subprocess and the :class:`StreamReader` class to read from the standard "
"output. The subprocess is created by the :func:`create_subprocess_exec` "
"function::"
msgstr ""