Skip to content

Commit 9cd0340

Browse files
committed
Update translation build
1 parent c8fb843 commit 9cd0340

519 files changed

Lines changed: 549 additions & 547 deletions

File tree

Some content is hidden

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

docs/_sources/library/asyncio-subprocess.rst.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ Creating Subprocesses
9595
See the documentation of :meth:`loop.subprocess_shell` for other
9696
parameters.
9797

98-
.. important::
99-
100-
It is the application's responsibility to ensure that all whitespace and
101-
special characters are quoted appropriately to avoid `shell injection
102-
<https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
103-
vulnerabilities. The :func:`shlex.quote` function can be used to properly
104-
escape whitespace and special shell characters in strings that are going
105-
to be used to construct shell commands.
98+
.. important::
99+
100+
It is the application's responsibility to ensure that all whitespace and
101+
special characters are quoted appropriately to avoid `shell injection
102+
<https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
103+
vulnerabilities. The :func:`shlex.quote` function can be used to properly
104+
escape whitespace and special shell characters in strings that are going
105+
to be used to construct shell commands.
106106

107107
.. deprecated-removed:: 3.8 3.10
108108

docs/_sources/library/select.rst.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ The module defines the following:
117117
.. function:: select(rlist, wlist, xlist[, timeout])
118118

119119
This is a straightforward interface to the Unix :c:func:`select` system call.
120-
The first three arguments are sequences of 'waitable objects': either
120+
The first three arguments are iterables of 'waitable objects': either
121121
integers representing file descriptors or objects with a parameterless method
122122
named :meth:`~io.IOBase.fileno` returning such an integer:
123123

@@ -126,7 +126,7 @@ The module defines the following:
126126
* *xlist*: wait for an "exceptional condition" (see the manual page for what
127127
your system considers such a condition)
128128

129-
Empty sequences are allowed, but acceptance of three empty sequences is
129+
Empty iterables are allowed, but acceptance of three empty iterables is
130130
platform-dependent. (It is known to work on Unix but not on Windows.) The
131131
optional *timeout* argument specifies a time-out as a floating point number
132132
in seconds. When the *timeout* argument is omitted the function blocks until
@@ -141,7 +141,7 @@ The module defines the following:
141141
single: socket() (in module socket)
142142
single: popen() (in module os)
143143

144-
Among the acceptable object types in the sequences are Python :term:`file
144+
Among the acceptable object types in the iterables are Python :term:`file
145145
objects <file object>` (e.g. ``sys.stdin``, or objects returned by
146146
:func:`open` or :func:`os.popen`), socket objects returned by
147147
:func:`socket.socket`. You may also define a :dfn:`wrapper` class yourself,

docs/_sources/library/stdtypes.rst.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -434,12 +434,10 @@ Notes:
434434
Negative shift counts are illegal and cause a :exc:`ValueError` to be raised.
435435

436436
(2)
437-
A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``
438-
without overflow check.
437+
A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``.
439438

440439
(3)
441-
A right shift by *n* bits is equivalent to division by ``pow(2, n)`` without
442-
overflow check.
440+
A right shift by *n* bits is equivalent to floor division by ``pow(2, n)``.
443441

444442
(4)
445443
Performing these calculations with at least one extra sign extension bit in

docs/_sources/library/typing.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1020,9 +1020,9 @@ The module defines the following classes, functions and decorators:
10201020
``List[ForwardRef("SomeClass")]``. This class should not be instantiated by
10211021
a user, but may be used by introspection tools.
10221022

1023-
.. function:: NewType(typ)
1023+
.. function:: NewType(name, tp)
10241024

1025-
A helper function to indicate a distinct types to a typechecker,
1025+
A helper function to indicate a distinct type to a typechecker,
10261026
see :ref:`distinct`. At runtime it returns a function that returns
10271027
its argument. Usage::
10281028

docs/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ <h3>Nawigacja</h3>
202202
<br />
203203
<br />
204204

205-
Ostatnia modyfikacja maj 26, 2020.
205+
Ostatnia modyfikacja maj 27, 2020.
206206
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
207207
<br />
208208

docs/bugs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ <h3>Nawigacja</h3>
232232
<br />
233233
<br />
234234

235-
Ostatnia modyfikacja maj 26, 2020.
235+
Ostatnia modyfikacja maj 27, 2020.
236236
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
237237
<br />
238238

docs/c-api/abstract.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ <h3>Nawigacja</h3>
213213
<br />
214214
<br />
215215

216-
Ostatnia modyfikacja maj 26, 2020.
216+
Ostatnia modyfikacja maj 27, 2020.
217217
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
218218
<br />
219219

docs/c-api/allocation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ <h3>Nawigacja</h3>
260260
<br />
261261
<br />
262262

263-
Ostatnia modyfikacja maj 26, 2020.
263+
Ostatnia modyfikacja maj 27, 2020.
264264
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
265265
<br />
266266

docs/c-api/apiabiversion.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ <h3>Nawigacja</h3>
233233
<br />
234234
<br />
235235

236-
Ostatnia modyfikacja maj 26, 2020.
236+
Ostatnia modyfikacja maj 27, 2020.
237237
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
238238
<br />
239239

docs/c-api/arg.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ <h3>Nawigacja</h3>
796796
<br />
797797
<br />
798798

799-
Ostatnia modyfikacja maj 26, 2020.
799+
Ostatnia modyfikacja maj 27, 2020.
800800
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
801801
<br />
802802

0 commit comments

Comments
 (0)