1
0
Fork 0
python-docs-fr/library/io.po

1567 lines
49 KiB
Plaintext
Raw Permalink Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-01-15 22:33+0100\n"
"PO-Revision-Date: 2018-07-03 11:13+0200\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/io.rst:2
2016-10-30 09:46:26 +00:00
msgid ":mod:`io` --- Core tools for working with streams"
msgstr ""
#: library/io.rst:15
2020-02-14 10:18:53 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/io.py`"
2020-02-14 10:18:53 +00:00
msgstr "**Code source:** :source:`Lib/os.py`"
2016-10-30 09:46:26 +00:00
#: library/io.rst:22
2016-10-30 09:46:26 +00:00
msgid "Overview"
2018-11-30 17:31:12 +00:00
msgstr "Aperçu"
2016-10-30 09:46:26 +00:00
#: library/io.rst:27
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`io` module provides Python's main facilities for dealing with "
"various types of I/O. There are three main types of I/O: *text I/O*, "
"*binary I/O* and *raw I/O*. These are generic categories, and various "
"backing stores can be used for each of them. A concrete object belonging to "
"any of these categories is called a :term:`file object`. Other common terms "
"are *stream* and *file-like object*."
msgstr ""
#: library/io.rst:34
2016-10-30 09:46:26 +00:00
msgid ""
2018-11-29 15:13:39 +00:00
"Independent of its category, each concrete stream object will also have "
2016-10-30 09:46:26 +00:00
"various capabilities: it can be read-only, write-only, or read-write. It can "
"also allow arbitrary random access (seeking forwards or backwards to any "
"location), or only sequential access (for example in the case of a socket or "
"pipe)."
msgstr ""
#: library/io.rst:40
2016-10-30 09:46:26 +00:00
msgid ""
"All streams are careful about the type of data you give to them. For "
"example giving a :class:`str` object to the ``write()`` method of a binary "
2018-11-29 15:13:39 +00:00
"stream will raise a :exc:`TypeError`. So will giving a :class:`bytes` "
"object to the ``write()`` method of a text stream."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:45
2016-10-30 09:46:26 +00:00
msgid ""
"Operations that used to raise :exc:`IOError` now raise :exc:`OSError`, "
"since :exc:`IOError` is now an alias of :exc:`OSError`."
msgstr ""
#: library/io.rst:855 library/io.rst:1122
2016-10-30 09:46:26 +00:00
msgid "Text I/O"
msgstr ""
#: library/io.rst:53
2016-10-30 09:46:26 +00:00
msgid ""
"Text I/O expects and produces :class:`str` objects. This means that "
"whenever the backing store is natively made of bytes (such as in the case of "
"a file), encoding and decoding of data is made transparently as well as "
"optional translation of platform-specific newline characters."
msgstr ""
#: library/io.rst:58
2016-10-30 09:46:26 +00:00
msgid ""
"The easiest way to create a text stream is with :meth:`open()`, optionally "
"specifying an encoding::"
msgstr ""
#: library/io.rst:63
2016-10-30 09:46:26 +00:00
msgid ""
"In-memory text streams are also available as :class:`StringIO` objects::"
msgstr ""
#: library/io.rst:67
2016-10-30 09:46:26 +00:00
msgid ""
"The text stream API is described in detail in the documentation of :class:"
"`TextIOBase`."
msgstr ""
#: library/io.rst:1110
2016-10-30 09:46:26 +00:00
msgid "Binary I/O"
msgstr ""
#: library/io.rst:74
2016-10-30 09:46:26 +00:00
msgid ""
"Binary I/O (also called *buffered I/O*) expects :term:`bytes-like objects "
"<bytes-like object>` and produces :class:`bytes` objects. No encoding, "
"decoding, or newline translation is performed. This category of streams can "
"be used for all kinds of non-text data, and also when manual control over "
"the handling of text data is desired."
msgstr ""
#: library/io.rst:80
2016-10-30 09:46:26 +00:00
msgid ""
"The easiest way to create a binary stream is with :meth:`open()` with "
"``'b'`` in the mode string::"
msgstr ""
#: library/io.rst:85
2016-10-30 09:46:26 +00:00
msgid ""
"In-memory binary streams are also available as :class:`BytesIO` objects::"
msgstr ""
#: library/io.rst:89
2016-10-30 09:46:26 +00:00
msgid ""
"The binary stream API is described in detail in the docs of :class:"
"`BufferedIOBase`."
msgstr ""
#: library/io.rst:92
2016-10-30 09:46:26 +00:00
msgid ""
"Other library modules may provide additional ways to create text or binary "
"streams. See :meth:`socket.socket.makefile` for example."
msgstr ""
#: library/io.rst:97
2016-10-30 09:46:26 +00:00
msgid "Raw I/O"
msgstr ""
#: library/io.rst:99
2016-10-30 09:46:26 +00:00
msgid ""
"Raw I/O (also called *unbuffered I/O*) is generally used as a low-level "
"building-block for binary and text streams; it is rarely useful to directly "
"manipulate a raw stream from user code. Nevertheless, you can create a raw "
"stream by opening a file in binary mode with buffering disabled::"
msgstr ""
#: library/io.rst:106
2016-10-30 09:46:26 +00:00
msgid ""
"The raw stream API is described in detail in the docs of :class:`RawIOBase`."
msgstr ""
#: library/io.rst:112
msgid "Text Encoding"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:114
2016-10-30 09:46:26 +00:00
msgid ""
"The default encoding of :class:`TextIOWrapper` and :func:`open` is locale-"
2022-05-22 21:15:02 +00:00
"specific (:func:`locale.getencoding`)."
msgstr ""
#: library/io.rst:117
msgid ""
"However, many developers forget to specify the encoding when opening text "
"files encoded in UTF-8 (e.g. JSON, TOML, Markdown, etc...) since most Unix "
"platforms use UTF-8 locale by default. This causes bugs because the locale "
"encoding is not UTF-8 for most Windows users. For example::"
msgstr ""
#: library/io.rst:126
msgid ""
"Accordingly, it is highly recommended that you specify the encoding "
"explicitly when opening text files. If you want to use UTF-8, pass "
2022-03-23 17:40:12 +00:00
"``encoding=\"utf-8\"``. To use the current locale encoding, "
"``encoding=\"locale\"`` is supported since Python 3.10."
msgstr ""
#: library/io.rst:135
msgid ":ref:`utf8-mode`"
msgstr ""
#: library/io.rst:134
msgid ""
"Python UTF-8 Mode can be used to change the default encoding to UTF-8 from "
"locale-specific encoding."
msgstr ""
#: library/io.rst:137
msgid ":pep:`686`"
msgstr ""
#: library/io.rst:138
msgid "Python 3.15 will make :ref:`utf8-mode` default."
msgstr ""
#: library/io.rst:143
msgid "Opt-in EncodingWarning"
msgstr ""
#: library/io.rst:145
msgid "See :pep:`597` for more details."
msgstr ""
#: library/io.rst:148
msgid ""
"To find where the default locale encoding is used, you can enable the ``-X "
"warn_default_encoding`` command line option or set the :envvar:"
"`PYTHONWARNDEFAULTENCODING` environment variable, which will emit an :exc:"
"`EncodingWarning` when the default encoding is used."
msgstr ""
#: library/io.rst:153
msgid ""
"If you are providing an API that uses :func:`open` or :class:`TextIOWrapper` "
"and passes ``encoding=None`` as a parameter, you can use :func:"
"`text_encoding` so that callers of the API will emit an :exc:"
"`EncodingWarning` if they don't pass an ``encoding``. However, please "
"consider using UTF-8 by default (i.e. ``encoding=\"utf-8\"``) for new APIs."
msgstr ""
#: library/io.rst:162
msgid "High-level Module Interface"
msgstr ""
#: library/io.rst:166
msgid ""
2016-10-30 09:46:26 +00:00
"An int containing the default buffer size used by the module's buffered I/O "
"classes. :func:`open` uses the file's blksize (as obtained by :func:`os."
"stat`) if possible."
msgstr ""
#: library/io.rst:173
2016-10-30 09:46:26 +00:00
msgid "This is an alias for the builtin :func:`open` function."
msgstr ""
#: library/io.rst:175
2019-09-04 09:35:23 +00:00
msgid ""
"Raises an :ref:`auditing event <auditing>` ``open`` with arguments ``path``, "
"``mode``, ``flags``."
msgstr ""
#: library/io.rst:177
2019-09-04 09:35:23 +00:00
msgid ""
"This function raises an :ref:`auditing event <auditing>` ``open`` with "
"arguments ``path``, ``mode`` and ``flags``. The ``mode`` and ``flags`` "
"arguments may have been modified or inferred from the original call."
msgstr ""
#: library/io.rst:184
2019-09-04 09:35:23 +00:00
msgid ""
"Opens the provided file with mode ``'rb'``. This function should be used "
"when the intent is to treat the contents as executable code."
msgstr ""
#: library/io.rst:187
2020-05-24 14:31:50 +00:00
msgid "``path`` should be a :class:`str` and an absolute path."
2019-09-04 09:35:23 +00:00
msgstr ""
#: library/io.rst:189
2019-09-04 09:35:23 +00:00
msgid ""
"The behavior of this function may be overridden by an earlier call to the :c:"
2020-05-24 14:31:50 +00:00
"func:`PyFile_SetOpenCodeHook`. However, assuming that ``path`` is a :class:"
"`str` and an absolute path, ``open_code(path)`` should always behave the "
"same as ``open(path, 'rb')``. Overriding the behavior is intended for "
"additional validation or preprocessing of the file."
2019-09-04 09:35:23 +00:00
msgstr ""
#: library/io.rst:200
msgid ""
"This is a helper function for callables that use :func:`open` or :class:"
"`TextIOWrapper` and have an ``encoding=None`` parameter."
msgstr ""
#: library/io.rst:203
msgid ""
2022-05-22 21:15:02 +00:00
"This function returns *encoding* if it is not ``None``. Otherwise, it "
"returns ``\"locale\"`` or ``\"utf-8\"`` depending on :ref:`UTF-8 Mode <utf8-"
"mode>`."
msgstr ""
#: library/io.rst:207
msgid ""
"This function emits an :class:`EncodingWarning` if :data:`sys.flags."
2022-05-22 21:15:02 +00:00
"warn_default_encoding <sys.flags>` is true and *encoding* is ``None``. "
"*stacklevel* specifies where the warning is emitted. For example::"
msgstr ""
#: library/io.rst:217
msgid ""
"In this example, an :class:`EncodingWarning` is emitted for the caller of "
"``read_text()``."
msgstr ""
#: library/io.rst:220
msgid "See :ref:`io-text-encoding` for more information."
msgstr ""
#: library/io.rst:224
2022-05-22 21:15:02 +00:00
msgid ""
":func:`text_encoding` returns \"utf-8\" when UTF-8 mode is enabled and "
"*encoding* is ``None``."
msgstr ""
#: library/io.rst:231
2016-10-30 09:46:26 +00:00
msgid ""
"This is a compatibility alias for the builtin :exc:`BlockingIOError` "
"exception."
msgstr ""
#: library/io.rst:237
2016-10-30 09:46:26 +00:00
msgid ""
"An exception inheriting :exc:`OSError` and :exc:`ValueError` that is raised "
"when an unsupported operation is called on a stream."
msgstr ""
#: library/io.rst:244
2016-10-30 09:46:26 +00:00
msgid ":mod:`sys`"
msgstr ":mod:`sys`"
2016-10-30 09:46:26 +00:00
#: library/io.rst:244
2016-10-30 09:46:26 +00:00
msgid ""
"contains the standard IO streams: :data:`sys.stdin`, :data:`sys.stdout`, "
"and :data:`sys.stderr`."
msgstr ""
#: library/io.rst:249
2016-10-30 09:46:26 +00:00
msgid "Class hierarchy"
msgstr ""
#: library/io.rst:251
2016-10-30 09:46:26 +00:00
msgid ""
"The implementation of I/O streams is organized as a hierarchy of classes. "
"First :term:`abstract base classes <abstract base class>` (ABCs), which are "
"used to specify the various categories of streams, then concrete classes "
"providing the standard stream implementations."
msgstr ""
#: library/io.rst:258
2016-10-30 09:46:26 +00:00
msgid ""
"The abstract base classes also provide default implementations of some "
"methods in order to help implementation of concrete stream classes. For "
"example, :class:`BufferedIOBase` provides unoptimized implementations of :"
"meth:`~IOBase.readinto` and :meth:`~IOBase.readline`."
msgstr ""
#: library/io.rst:263
2016-10-30 09:46:26 +00:00
msgid ""
"At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. "
"It defines the basic interface to a stream. Note, however, that there is no "
"separation between reading and writing to streams; implementations are "
"allowed to raise :exc:`UnsupportedOperation` if they do not support a given "
"operation."
msgstr ""
#: library/io.rst:268
2016-10-30 09:46:26 +00:00
msgid ""
"The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the "
"reading and writing of bytes to a stream. :class:`FileIO` subclasses :class:"
"`RawIOBase` to provide an interface to files in the machine's file system."
msgstr ""
#: library/io.rst:272
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with "
"buffering on a raw binary stream (:class:`RawIOBase`). Its subclasses, :"
"class:`BufferedWriter`, :class:`BufferedReader`, and :class:`BufferedRWPair` "
"buffer raw binary streams that are writable, readable, and both readable and "
2020-07-20 08:56:42 +00:00
"writable, respectively. :class:`BufferedRandom` provides a buffered "
"interface to seekable streams. Another :class:`BufferedIOBase` subclass, :"
"class:`BytesIO`, is a stream of in-memory bytes."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:280
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"The :class:`TextIOBase` ABC extends :class:`IOBase`. It deals with streams "
"whose bytes represent text, and handles encoding and decoding to and from "
"strings. :class:`TextIOWrapper`, which extends :class:`TextIOBase`, is a "
"buffered text interface to a buffered raw stream (:class:`BufferedIOBase`). "
"Finally, :class:`StringIO` is an in-memory stream for text."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:286
2016-10-30 09:46:26 +00:00
msgid ""
"Argument names are not part of the specification, and only the arguments of :"
"func:`open` are intended to be used as keyword arguments."
msgstr ""
#: library/io.rst:289
2016-10-30 09:46:26 +00:00
msgid ""
"The following table summarizes the ABCs provided by the :mod:`io` module:"
msgstr ""
#: library/io.rst:294
2016-10-30 09:46:26 +00:00
msgid "ABC"
msgstr "ABC"
#: library/io.rst:294
2016-10-30 09:46:26 +00:00
msgid "Inherits"
msgstr ""
#: library/io.rst:294
2016-10-30 09:46:26 +00:00
msgid "Stub Methods"
msgstr ""
#: library/io.rst:294
2016-10-30 09:46:26 +00:00
msgid "Mixin Methods and Properties"
msgstr ""
#: library/io.rst:301 library/io.rst:305
2016-10-30 09:46:26 +00:00
msgid ":class:`IOBase`"
msgstr ":class:`IOBase`"
2016-10-30 09:46:26 +00:00
#: library/io.rst:296
2016-10-30 09:46:26 +00:00
msgid "``fileno``, ``seek``, and ``truncate``"
msgstr "``fileno``, ``seek``, et ``truncate``"
#: library/io.rst:296
2016-10-30 09:46:26 +00:00
msgid ""
"``close``, ``closed``, ``__enter__``, ``__exit__``, ``flush``, ``isatty``, "
"``__iter__``, ``__next__``, ``readable``, ``readline``, ``readlines``, "
"``seekable``, ``tell``, ``writable``, and ``writelines``"
msgstr ""
#: library/io.rst:301
2016-10-30 09:46:26 +00:00
msgid ":class:`RawIOBase`"
msgstr ":class:`RawIOBase`"
2016-10-30 09:46:26 +00:00
#: library/io.rst:301
2016-10-30 09:46:26 +00:00
msgid "``readinto`` and ``write``"
msgstr "``readinto`` et ``write``"
#: library/io.rst:301
2016-10-30 09:46:26 +00:00
msgid "Inherited :class:`IOBase` methods, ``read``, and ``readall``"
msgstr ""
#: library/io.rst:303
2016-10-30 09:46:26 +00:00
msgid ":class:`BufferedIOBase`"
msgstr ":class:`BufferedIOBase`"
2016-10-30 09:46:26 +00:00
#: library/io.rst:303
2016-10-30 09:46:26 +00:00
msgid "``detach``, ``read``, ``read1``, and ``write``"
msgstr "``detach``, ``read``, ``read1``, et ``write``"
#: library/io.rst:303
2018-01-04 14:57:05 +00:00
msgid "Inherited :class:`IOBase` methods, ``readinto``, and ``readinto1``"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:305
2016-10-30 09:46:26 +00:00
msgid ":class:`TextIOBase`"
msgstr ":class:`TextIOBase`"
2016-10-30 09:46:26 +00:00
#: library/io.rst:305
2016-10-30 09:46:26 +00:00
msgid "``detach``, ``read``, ``readline``, and ``write``"
msgstr "``detach``, ``read``, ``readline``, et ``write``"
#: library/io.rst:305
2016-10-30 09:46:26 +00:00
msgid ""
"Inherited :class:`IOBase` methods, ``encoding``, ``errors``, and ``newlines``"
msgstr ""
#: library/io.rst:312
2016-10-30 09:46:26 +00:00
msgid "I/O Base Classes"
msgstr ""
#: library/io.rst:316
2022-03-23 17:40:12 +00:00
msgid "The abstract base class for all I/O classes."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:318
2016-10-30 09:46:26 +00:00
msgid ""
"This class provides empty abstract implementations for many methods that "
"derived classes can override selectively; the default implementations "
"represent a file that cannot be read, written or seeked."
msgstr ""
#: library/io.rst:323
2016-10-30 09:46:26 +00:00
msgid ""
2019-04-10 14:52:58 +00:00
"Even though :class:`IOBase` does not declare :meth:`read` or :meth:`write` "
"because their signatures will vary, implementations and clients should "
"consider those methods part of the interface. Also, implementations may "
"raise a :exc:`ValueError` (or :exc:`UnsupportedOperation`) when operations "
"they do not support are called."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:329
2016-10-30 09:46:26 +00:00
msgid ""
"The basic type used for binary data read from or written to a file is :class:"
"`bytes`. Other :term:`bytes-like objects <bytes-like object>` are accepted "
2019-04-10 14:52:58 +00:00
"as method arguments too. Text I/O classes work with :class:`str` data."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:333
2016-10-30 09:46:26 +00:00
msgid ""
"Note that calling any method (even inquiries) on a closed stream is "
"undefined. Implementations may raise :exc:`ValueError` in this case."
msgstr ""
#: library/io.rst:336
2016-10-30 09:46:26 +00:00
msgid ""
":class:`IOBase` (and its subclasses) supports the iterator protocol, meaning "
"that an :class:`IOBase` object can be iterated over yielding the lines in a "
"stream. Lines are defined slightly differently depending on whether the "
"stream is a binary stream (yielding bytes), or a text stream (yielding "
"character strings). See :meth:`~IOBase.readline` below."
msgstr ""
#: library/io.rst:342
2016-10-30 09:46:26 +00:00
msgid ""
":class:`IOBase` is also a context manager and therefore supports the :"
"keyword:`with` statement. In this example, *file* is closed after the :"
2018-12-24 13:20:55 +00:00
"keyword:`!with` statement's suite is finished---even if an exception occurs::"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:349
2016-10-30 09:46:26 +00:00
msgid ":class:`IOBase` provides these data attributes and methods:"
msgstr ""
#: library/io.rst:353
2016-10-30 09:46:26 +00:00
msgid ""
"Flush and close this stream. This method has no effect if the file is "
"already closed. Once the file is closed, any operation on the file (e.g. "
"reading or writing) will raise a :exc:`ValueError`."
msgstr ""
#: library/io.rst:357
2016-10-30 09:46:26 +00:00
msgid ""
"As a convenience, it is allowed to call this method more than once; only the "
"first call, however, will have an effect."
msgstr ""
#: library/io.rst:362
2016-10-30 09:46:26 +00:00
msgid "``True`` if the stream is closed."
msgstr ""
#: library/io.rst:366
2016-10-30 09:46:26 +00:00
msgid ""
"Return the underlying file descriptor (an integer) of the stream if it "
"exists. An :exc:`OSError` is raised if the IO object does not use a file "
"descriptor."
msgstr ""
#: library/io.rst:372
2016-10-30 09:46:26 +00:00
msgid ""
"Flush the write buffers of the stream if applicable. This does nothing for "
"read-only and non-blocking streams."
msgstr ""
#: library/io.rst:377
2016-10-30 09:46:26 +00:00
msgid ""
"Return ``True`` if the stream is interactive (i.e., connected to a terminal/"
"tty device)."
msgstr ""
#: library/io.rst:382
2016-10-30 09:46:26 +00:00
msgid ""
"Return ``True`` if the stream can be read from. If ``False``, :meth:`read` "
"will raise :exc:`OSError`."
msgstr ""
#: library/io.rst:387
2016-10-30 09:46:26 +00:00
msgid ""
"Read and return one line from the stream. If *size* is specified, at most "
"*size* bytes will be read."
msgstr ""
#: library/io.rst:390
2016-10-30 09:46:26 +00:00
msgid ""
"The line terminator is always ``b'\\n'`` for binary files; for text files, "
"the *newline* argument to :func:`open` can be used to select the line "
"terminator(s) recognized."
msgstr ""
#: library/io.rst:396
2016-10-30 09:46:26 +00:00
msgid ""
"Read and return a list of lines from the stream. *hint* can be specified to "
"control the number of lines read: no more lines will be read if the total "
"size (in bytes/characters) of all lines so far exceeds *hint*."
msgstr ""
#: library/io.rst:400
msgid ""
"*hint* values of ``0`` or less, as well as ``None``, are treated as no hint."
msgstr ""
#: library/io.rst:403
2016-10-30 09:46:26 +00:00
msgid ""
"Note that it's already possible to iterate on file objects using ``for line "
"in file: ...`` without calling ``file.readlines()``."
msgstr ""
#: library/io.rst:408
2016-10-30 09:46:26 +00:00
msgid ""
"Change the stream position to the given byte *offset*. *offset* is "
"interpreted relative to the position indicated by *whence*. The default "
"value for *whence* is :data:`SEEK_SET`. Values for *whence* are:"
msgstr ""
#: library/io.rst:412
2016-10-30 09:46:26 +00:00
msgid ""
":data:`SEEK_SET` or ``0`` -- start of the stream (the default); *offset* "
"should be zero or positive"
msgstr ""
#: library/io.rst:414
2016-10-30 09:46:26 +00:00
msgid ""
":data:`SEEK_CUR` or ``1`` -- current stream position; *offset* may be "
"negative"
msgstr ""
#: library/io.rst:416
2016-10-30 09:46:26 +00:00
msgid ""
":data:`SEEK_END` or ``2`` -- end of the stream; *offset* is usually negative"
msgstr ""
#: library/io.rst:419
2016-10-30 09:46:26 +00:00
msgid "Return the new absolute position."
msgstr ""
#: library/io.rst:930
2016-10-30 09:46:26 +00:00
msgid "The ``SEEK_*`` constants."
msgstr ""
#: library/io.rst:424
2016-10-30 09:46:26 +00:00
msgid ""
"Some operating systems could support additional values, like :data:`os."
"SEEK_HOLE` or :data:`os.SEEK_DATA`. The valid values for a file could depend "
"on it being open in text or binary mode."
msgstr ""
#: library/io.rst:431
2016-10-30 09:46:26 +00:00
msgid ""
"Return ``True`` if the stream supports random access. If ``False``, :meth:"
"`seek`, :meth:`tell` and :meth:`truncate` will raise :exc:`OSError`."
msgstr ""
#: library/io.rst:436
2016-10-30 09:46:26 +00:00
msgid "Return the current stream position."
msgstr ""
#: library/io.rst:440
2016-10-30 09:46:26 +00:00
msgid ""
"Resize the stream to the given *size* in bytes (or the current position if "
"*size* is not specified). The current stream position isn't changed. This "
"resizing can extend or reduce the current file size. In case of extension, "
"the contents of the new file area depend on the platform (on most systems, "
"additional bytes are zero-filled). The new file size is returned."
msgstr ""
#: library/io.rst:447
2016-10-30 09:46:26 +00:00
msgid "Windows will now zero-fill files when extending."
msgstr ""
#: library/io.rst:452
2016-10-30 09:46:26 +00:00
msgid ""
"Return ``True`` if the stream supports writing. If ``False``, :meth:`write` "
"and :meth:`truncate` will raise :exc:`OSError`."
msgstr ""
#: library/io.rst:457
2016-10-30 09:46:26 +00:00
msgid ""
"Write a list of lines to the stream. Line separators are not added, so it "
"is usual for each of the lines provided to have a line separator at the end."
msgstr ""
#: library/io.rst:463
2016-10-30 09:46:26 +00:00
msgid ""
"Prepare for object destruction. :class:`IOBase` provides a default "
"implementation of this method that calls the instance's :meth:`~IOBase."
"close` method."
msgstr ""
#: library/io.rst:470
2022-03-23 17:40:12 +00:00
msgid "Base class for raw binary streams. It inherits :class:`IOBase`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:472
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"Raw binary streams typically provide low-level access to an underlying OS "
"device or API, and do not try to encapsulate it in high-level primitives "
"(this functionality is done at a higher-level in buffered binary streams and "
"text streams, described later in this page)."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:477
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
":class:`RawIOBase` provides these methods in addition to those from :class:"
"`IOBase`:"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:482
2016-10-30 09:46:26 +00:00
msgid ""
"Read up to *size* bytes from the object and return them. As a convenience, "
2018-01-04 14:57:05 +00:00
"if *size* is unspecified or -1, all bytes until EOF are returned. Otherwise, "
"only one system call is ever made. Fewer than *size* bytes may be returned "
"if the operating system call returns fewer than *size* bytes."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:487
2016-10-30 09:46:26 +00:00
msgid ""
"If 0 bytes are returned, and *size* was not 0, this indicates end of file. "
"If the object is in non-blocking mode and no bytes are available, ``None`` "
"is returned."
msgstr ""
#: library/io.rst:491
2018-01-04 14:57:05 +00:00
msgid ""
"The default implementation defers to :meth:`readall` and :meth:`readinto`."
msgstr ""
#: library/io.rst:496
2016-10-30 09:46:26 +00:00
msgid ""
"Read and return all the bytes from the stream until EOF, using multiple "
"calls to the stream if necessary."
msgstr ""
#: library/io.rst:501
2016-10-30 09:46:26 +00:00
msgid ""
"Read bytes into a pre-allocated, writable :term:`bytes-like object` *b*, and "
2019-04-10 14:52:58 +00:00
"return the number of bytes read. For example, *b* might be a :class:"
"`bytearray`. If the object is in non-blocking mode and no bytes are "
"available, ``None`` is returned."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:509
2016-10-30 09:46:26 +00:00
msgid ""
"Write the given :term:`bytes-like object`, *b*, to the underlying raw "
"stream, and return the number of bytes written. This can be less than the "
"length of *b* in bytes, depending on specifics of the underlying raw stream, "
"and especially if it is in non-blocking mode. ``None`` is returned if the "
"raw stream is set not to block and no single byte could be readily written "
"to it. The caller may release or mutate *b* after this method returns, so "
"the implementation should only access *b* during the method call."
msgstr ""
#: library/io.rst:522
2016-10-30 09:46:26 +00:00
msgid ""
"Base class for binary streams that support some kind of buffering. It "
2022-03-23 17:40:12 +00:00
"inherits :class:`IOBase`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:525
2016-10-30 09:46:26 +00:00
msgid ""
"The main difference with :class:`RawIOBase` is that methods :meth:`read`, :"
"meth:`readinto` and :meth:`write` will try (respectively) to read as much "
"input as requested or to consume all given output, at the expense of making "
"perhaps more than one system call."
msgstr ""
#: library/io.rst:530
2016-10-30 09:46:26 +00:00
msgid ""
"In addition, those methods can raise :exc:`BlockingIOError` if the "
"underlying raw stream is in non-blocking mode and cannot take or give enough "
"data; unlike their :class:`RawIOBase` counterparts, they will never return "
"``None``."
msgstr ""
#: library/io.rst:535
2016-10-30 09:46:26 +00:00
msgid ""
"Besides, the :meth:`read` method does not have a default implementation that "
"defers to :meth:`readinto`."
msgstr ""
#: library/io.rst:538
2016-10-30 09:46:26 +00:00
msgid ""
"A typical :class:`BufferedIOBase` implementation should not inherit from a :"
"class:`RawIOBase` implementation, but wrap one, like :class:`BufferedWriter` "
"and :class:`BufferedReader` do."
msgstr ""
#: library/io.rst:542
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
":class:`BufferedIOBase` provides or overrides these data attributes and "
"methods in addition to those from :class:`IOBase`:"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:547
2016-10-30 09:46:26 +00:00
msgid ""
"The underlying raw stream (a :class:`RawIOBase` instance) that :class:"
"`BufferedIOBase` deals with. This is not part of the :class:"
"`BufferedIOBase` API and may not exist on some implementations."
msgstr ""
#: library/io.rst:553
2016-10-30 09:46:26 +00:00
msgid "Separate the underlying raw stream from the buffer and return it."
msgstr ""
#: library/io.rst:555
2016-10-30 09:46:26 +00:00
msgid ""
"After the raw stream has been detached, the buffer is in an unusable state."
msgstr ""
#: library/io.rst:558
2016-10-30 09:46:26 +00:00
msgid ""
"Some buffers, like :class:`BytesIO`, do not have the concept of a single raw "
"stream to return from this method. They raise :exc:`UnsupportedOperation`."
msgstr ""
#: library/io.rst:566
2016-10-30 09:46:26 +00:00
msgid ""
"Read and return up to *size* bytes. If the argument is omitted, ``None``, "
"or negative, data is read and returned until EOF is reached. An empty :"
"class:`bytes` object is returned if the stream is already at EOF."
msgstr ""
#: library/io.rst:570
2016-10-30 09:46:26 +00:00
msgid ""
"If the argument is positive, and the underlying raw stream is not "
"interactive, multiple raw reads may be issued to satisfy the byte count "
"(unless EOF is reached first). But for interactive raw streams, at most one "
"raw read will be issued, and a short result does not imply that EOF is "
"imminent."
msgstr ""
#: library/io.rst:599 library/io.rst:609
2016-10-30 09:46:26 +00:00
msgid ""
"A :exc:`BlockingIOError` is raised if the underlying raw stream is in non "
"blocking-mode, and has no data available at the moment."
msgstr ""
#: library/io.rst:581
2016-10-30 09:46:26 +00:00
msgid ""
"Read and return up to *size* bytes, with at most one call to the underlying "
"raw stream's :meth:`~RawIOBase.read` (or :meth:`~RawIOBase.readinto`) "
"method. This can be useful if you are implementing your own buffering on "
"top of a :class:`BufferedIOBase` object."
msgstr ""
#: library/io.rst:587
2018-06-28 13:32:56 +00:00
msgid ""
"If *size* is ``-1`` (the default), an arbitrary number of bytes are returned "
"(more than zero unless EOF is reached)."
msgstr ""
#: library/io.rst:592
2016-10-30 09:46:26 +00:00
msgid ""
"Read bytes into a pre-allocated, writable :term:`bytes-like object` *b* and "
2019-04-10 14:52:58 +00:00
"return the number of bytes read. For example, *b* might be a :class:"
"`bytearray`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:596
2016-10-30 09:46:26 +00:00
msgid ""
"Like :meth:`read`, multiple reads may be issued to the underlying raw "
"stream, unless the latter is interactive."
msgstr ""
#: library/io.rst:604
2016-10-30 09:46:26 +00:00
msgid ""
"Read bytes into a pre-allocated, writable :term:`bytes-like object` *b*, "
"using at most one call to the underlying raw stream's :meth:`~RawIOBase."
"read` (or :meth:`~RawIOBase.readinto`) method. Return the number of bytes "
"read."
msgstr ""
#: library/io.rst:616
2016-10-30 09:46:26 +00:00
msgid ""
"Write the given :term:`bytes-like object`, *b*, and return the number of "
"bytes written (always equal to the length of *b* in bytes, since if the "
"write fails an :exc:`OSError` will be raised). Depending on the actual "
"implementation, these bytes may be readily written to the underlying stream, "
"or held in a buffer for performance and latency reasons."
msgstr ""
#: library/io.rst:623
2016-10-30 09:46:26 +00:00
msgid ""
"When in non-blocking mode, a :exc:`BlockingIOError` is raised if the data "
"needed to be written to the raw stream but it couldn't accept all the data "
"without blocking."
msgstr ""
#: library/io.rst:627
2016-10-30 09:46:26 +00:00
msgid ""
"The caller may release or mutate *b* after this method returns, so the "
"implementation should only access *b* during the method call."
msgstr ""
#: library/io.rst:632
2016-10-30 09:46:26 +00:00
msgid "Raw File I/O"
msgstr ""
#: library/io.rst:636
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"A raw binary stream representing an OS-level file containing bytes data. It "
"inherits :class:`RawIOBase`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:639
2016-10-30 09:46:26 +00:00
msgid "The *name* can be one of two things:"
msgstr ""
#: library/io.rst:641
2016-10-30 09:46:26 +00:00
msgid ""
"a character string or :class:`bytes` object representing the path to the "
"file which will be opened. In this case closefd must be ``True`` (the "
"default) otherwise an error will be raised."
msgstr ""
#: library/io.rst:644
2016-10-30 09:46:26 +00:00
msgid ""
"an integer representing the number of an existing OS-level file descriptor "
"to which the resulting :class:`FileIO` object will give access. When the "
"FileIO object is closed this fd will be closed as well, unless *closefd* is "
"set to ``False``."
msgstr ""
#: library/io.rst:649
2016-10-30 09:46:26 +00:00
msgid ""
"The *mode* can be ``'r'``, ``'w'``, ``'x'`` or ``'a'`` for reading "
"(default), writing, exclusive creation or appending. The file will be "
"created if it doesn't exist when opened for writing or appending; it will be "
"truncated when opened for writing. :exc:`FileExistsError` will be raised if "
"it already exists when opened for creating. Opening a file for creating "
"implies writing, so this mode behaves in a similar way to ``'w'``. Add a "
"``'+'`` to the mode to allow simultaneous reading and writing."
msgstr ""
#: library/io.rst:657
2016-10-30 09:46:26 +00:00
msgid ""
"The :meth:`read` (when called with a positive argument), :meth:`readinto` "
"and :meth:`write` methods on this class will only make one system call."
msgstr ""
#: library/io.rst:660
2016-10-30 09:46:26 +00:00
msgid ""
"A custom opener can be used by passing a callable as *opener*. The "
"underlying file descriptor for the file object is then obtained by calling "
"*opener* with (*name*, *flags*). *opener* must return an open file "
"descriptor (passing :mod:`os.open` as *opener* results in functionality "
"similar to passing ``None``)."
msgstr ""
"Un *opener* personnalisé peut être utilisé en fournissant un appelable à "
"*opener*. Le descripteur de fichier de cet objet fichier sera alors obtenu "
"en appelant *opener* avec (*file*, *flags*). *opener* doit donner un "
"descripteur de fichier ouvert (fournir :mod:`os.open` en temps qu'*opener* "
"aura le même effet que donner ``None``)."
#: library/io.rst:666
2016-10-30 09:46:26 +00:00
msgid "The newly created file is :ref:`non-inheritable <fd_inheritance>`."
msgstr ""
"Il n'est :ref:`pas possible d'hériter du fichier <fd_inheritance>` "
"nouvellement créé."
#: library/io.rst:668
2016-10-30 09:46:26 +00:00
msgid ""
"See the :func:`open` built-in function for examples on using the *opener* "
"parameter."
msgstr ""
#: library/io.rst:671
2016-10-30 09:46:26 +00:00
msgid "The *opener* parameter was added. The ``'x'`` mode was added."
msgstr ""
#: library/io.rst:675
2016-10-30 09:46:26 +00:00
msgid "The file is now non-inheritable."
msgstr "Il n'est plus possible d'hériter de *file*."
#: library/io.rst:678
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
":class:`FileIO` provides these data attributes in addition to those from :"
"class:`RawIOBase` and :class:`IOBase`:"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:683
2016-10-30 09:46:26 +00:00
msgid "The mode as given in the constructor."
msgstr ""
#: library/io.rst:687
2016-10-30 09:46:26 +00:00
msgid ""
"The file name. This is the file descriptor of the file when no name is "
"given in the constructor."
msgstr ""
#: library/io.rst:692
2016-10-30 09:46:26 +00:00
msgid "Buffered Streams"
msgstr ""
#: library/io.rst:694
2016-10-30 09:46:26 +00:00
msgid ""
"Buffered I/O streams provide a higher-level interface to an I/O device than "
"raw I/O does."
msgstr ""
#: library/io.rst:699
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"A binary stream using an in-memory bytes buffer. It inherits :class:"
2016-10-30 09:46:26 +00:00
"`BufferedIOBase`. The buffer is discarded when the :meth:`~IOBase.close` "
"method is called."
msgstr ""
#: library/io.rst:703
2016-10-30 09:46:26 +00:00
msgid ""
"The optional argument *initial_bytes* is a :term:`bytes-like object` that "
"contains initial data."
msgstr ""
#: library/io.rst:706
2016-10-30 09:46:26 +00:00
msgid ""
":class:`BytesIO` provides or overrides these methods in addition to those "
"from :class:`BufferedIOBase` and :class:`IOBase`:"
msgstr ""
#: library/io.rst:711
2016-10-30 09:46:26 +00:00
msgid ""
"Return a readable and writable view over the contents of the buffer without "
"copying them. Also, mutating the view will transparently update the "
"contents of the buffer::"
msgstr ""
#: library/io.rst:722
2016-10-30 09:46:26 +00:00
msgid ""
"As long as the view exists, the :class:`BytesIO` object cannot be resized or "
"closed."
msgstr ""
#: library/io.rst:729
2016-10-30 09:46:26 +00:00
msgid "Return :class:`bytes` containing the entire contents of the buffer."
msgstr ""
#: library/io.rst:734
2018-06-28 13:32:56 +00:00
msgid "In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.read`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:779
2018-06-28 13:32:56 +00:00
msgid "The *size* argument is now optional."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:741
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.readinto`."
msgstr ""
#: library/io.rst:747
2020-07-20 08:56:42 +00:00
msgid ""
"A buffered binary stream providing higher-level access to a readable, non "
"seekable :class:`RawIOBase` raw binary stream. It inherits :class:"
"`BufferedIOBase`."
msgstr ""
#: library/io.rst:751
2018-06-28 13:32:56 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"When reading data from this object, a larger amount of data may be requested "
"from the underlying raw stream, and kept in an internal buffer. The buffered "
"data can then be returned directly on subsequent reads."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:755
2016-10-30 09:46:26 +00:00
msgid ""
"The constructor creates a :class:`BufferedReader` for the given readable "
"*raw* stream and *buffer_size*. If *buffer_size* is omitted, :data:"
"`DEFAULT_BUFFER_SIZE` is used."
msgstr ""
#: library/io.rst:759
2016-10-30 09:46:26 +00:00
msgid ""
":class:`BufferedReader` provides or overrides these methods in addition to "
"those from :class:`BufferedIOBase` and :class:`IOBase`:"
msgstr ""
#: library/io.rst:764
2016-10-30 09:46:26 +00:00
msgid ""
"Return bytes from the stream without advancing the position. At most one "
"single read on the raw stream is done to satisfy the call. The number of "
"bytes returned may be less or more than requested."
msgstr ""
#: library/io.rst:770
2016-10-30 09:46:26 +00:00
msgid ""
"Read and return *size* bytes, or if *size* is not given or negative, until "
"EOF or if the read call would block in non-blocking mode."
msgstr ""
#: library/io.rst:775
2016-10-30 09:46:26 +00:00
msgid ""
"Read and return up to *size* bytes with only one call on the raw stream. If "
"at least one byte is buffered, only buffered bytes are returned. Otherwise, "
"one raw stream read call is made."
msgstr ""
#: library/io.rst:785
2020-07-20 08:56:42 +00:00
msgid ""
"A buffered binary stream providing higher-level access to a writeable, non "
"seekable :class:`RawIOBase` raw binary stream. It inherits :class:"
"`BufferedIOBase`."
msgstr ""
#: library/io.rst:789
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"When writing to this object, data is normally placed into an internal "
"buffer. The buffer will be written out to the underlying :class:`RawIOBase` "
"object under various conditions, including:"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:793
2016-10-30 09:46:26 +00:00
msgid "when the buffer gets too small for all pending data;"
msgstr ""
#: library/io.rst:794
2016-10-30 09:46:26 +00:00
msgid "when :meth:`flush()` is called;"
msgstr ""
#: library/io.rst:795
2016-10-30 09:46:26 +00:00
msgid ""
"when a :meth:`seek()` is requested (for :class:`BufferedRandom` objects);"
msgstr ""
#: library/io.rst:796
2016-10-30 09:46:26 +00:00
msgid "when the :class:`BufferedWriter` object is closed or destroyed."
msgstr ""
#: library/io.rst:798
2016-10-30 09:46:26 +00:00
msgid ""
"The constructor creates a :class:`BufferedWriter` for the given writeable "
"*raw* stream. If the *buffer_size* is not given, it defaults to :data:"
"`DEFAULT_BUFFER_SIZE`."
msgstr ""
#: library/io.rst:802
2016-10-30 09:46:26 +00:00
msgid ""
":class:`BufferedWriter` provides or overrides these methods in addition to "
"those from :class:`BufferedIOBase` and :class:`IOBase`:"
msgstr ""
#: library/io.rst:807
2016-10-30 09:46:26 +00:00
msgid ""
"Force bytes held in the buffer into the raw stream. A :exc:"
"`BlockingIOError` should be raised if the raw stream blocks."
msgstr ""
#: library/io.rst:812
2016-10-30 09:46:26 +00:00
msgid ""
"Write the :term:`bytes-like object`, *b*, and return the number of bytes "
"written. When in non-blocking mode, a :exc:`BlockingIOError` is raised if "
"the buffer needs to be written out but the raw stream blocks."
msgstr ""
#: library/io.rst:820
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"A buffered binary stream providing higher-level access to a seekable :class:"
"`RawIOBase` raw binary stream. It inherits :class:`BufferedReader` and :"
"class:`BufferedWriter`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:824
2016-10-30 09:46:26 +00:00
msgid ""
"The constructor creates a reader and writer for a seekable raw stream, given "
"in the first argument. If the *buffer_size* is omitted it defaults to :data:"
"`DEFAULT_BUFFER_SIZE`."
msgstr ""
#: library/io.rst:828
2016-10-30 09:46:26 +00:00
msgid ""
":class:`BufferedRandom` is capable of anything :class:`BufferedReader` or :"
2019-09-04 09:35:23 +00:00
"class:`BufferedWriter` can do. In addition, :meth:`seek` and :meth:`tell` "
"are guaranteed to be implemented."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:835
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"A buffered binary stream providing higher-level access to two non seekable :"
"class:`RawIOBase` raw binary streams---one readable, the other writeable. It "
"inherits :class:`BufferedIOBase`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:839
2016-10-30 09:46:26 +00:00
msgid ""
"*reader* and *writer* are :class:`RawIOBase` objects that are readable and "
"writeable respectively. If the *buffer_size* is omitted it defaults to :"
"data:`DEFAULT_BUFFER_SIZE`."
msgstr ""
#: library/io.rst:843
2016-10-30 09:46:26 +00:00
msgid ""
":class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\\'s "
"methods except for :meth:`~BufferedIOBase.detach`, which raises :exc:"
"`UnsupportedOperation`."
msgstr ""
#: library/io.rst:849
2016-10-30 09:46:26 +00:00
msgid ""
":class:`BufferedRWPair` does not attempt to synchronize accesses to its "
"underlying raw streams. You should not pass it the same object as reader "
"and writer; use :class:`BufferedRandom` instead."
msgstr ""
#: library/io.rst:859
2016-10-30 09:46:26 +00:00
msgid ""
"Base class for text streams. This class provides a character and line based "
2022-03-23 17:40:12 +00:00
"interface to stream I/O. It inherits :class:`IOBase`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:862
2016-10-30 09:46:26 +00:00
msgid ""
":class:`TextIOBase` provides or overrides these data attributes and methods "
"in addition to those from :class:`IOBase`:"
msgstr ""
#: library/io.rst:867
2016-10-30 09:46:26 +00:00
msgid ""
"The name of the encoding used to decode the stream's bytes into strings, and "
"to encode strings into bytes."
msgstr ""
#: library/io.rst:872
2016-10-30 09:46:26 +00:00
msgid "The error setting of the decoder or encoder."
msgstr ""
#: library/io.rst:876
2016-10-30 09:46:26 +00:00
msgid ""
"A string, a tuple of strings, or ``None``, indicating the newlines "
"translated so far. Depending on the implementation and the initial "
"constructor flags, this may not be available."
msgstr ""
#: library/io.rst:882
2016-10-30 09:46:26 +00:00
msgid ""
"The underlying binary buffer (a :class:`BufferedIOBase` instance) that :"
"class:`TextIOBase` deals with. This is not part of the :class:`TextIOBase` "
"API and may not exist in some implementations."
msgstr ""
#: library/io.rst:888
2016-10-30 09:46:26 +00:00
msgid ""
"Separate the underlying binary buffer from the :class:`TextIOBase` and "
"return it."
msgstr ""
#: library/io.rst:891
2016-10-30 09:46:26 +00:00
msgid ""
"After the underlying buffer has been detached, the :class:`TextIOBase` is in "
"an unusable state."
msgstr ""
#: library/io.rst:894
2016-10-30 09:46:26 +00:00
msgid ""
"Some :class:`TextIOBase` implementations, like :class:`StringIO`, may not "
"have the concept of an underlying buffer and calling this method will raise :"
"exc:`UnsupportedOperation`."
msgstr ""
#: library/io.rst:902
2016-10-30 09:46:26 +00:00
msgid ""
"Read and return at most *size* characters from the stream as a single :class:"
"`str`. If *size* is negative or ``None``, reads until EOF."
msgstr ""
#: library/io.rst:907
2016-10-30 09:46:26 +00:00
msgid ""
"Read until newline or EOF and return a single ``str``. If the stream is "
"already at EOF, an empty string is returned."
msgstr ""
#: library/io.rst:910
2016-10-30 09:46:26 +00:00
msgid "If *size* is specified, at most *size* characters will be read."
msgstr ""
#: library/io.rst:914
2016-10-30 09:46:26 +00:00
msgid ""
"Change the stream position to the given *offset*. Behaviour depends on the "
"*whence* parameter. The default value for *whence* is :data:`SEEK_SET`."
msgstr ""
#: library/io.rst:918
2016-10-30 09:46:26 +00:00
msgid ""
":data:`SEEK_SET` or ``0``: seek from the start of the stream (the default); "
"*offset* must either be a number returned by :meth:`TextIOBase.tell`, or "
"zero. Any other *offset* value produces undefined behaviour."
msgstr ""
#: library/io.rst:922
2016-10-30 09:46:26 +00:00
msgid ""
":data:`SEEK_CUR` or ``1``: \"seek\" to the current position; *offset* must "
"be zero, which is a no-operation (all other values are unsupported)."
msgstr ""
#: library/io.rst:925
2016-10-30 09:46:26 +00:00
msgid ""
":data:`SEEK_END` or ``2``: seek to the end of the stream; *offset* must be "
"zero (all other values are unsupported)."
msgstr ""
#: library/io.rst:928
2016-10-30 09:46:26 +00:00
msgid "Return the new absolute position as an opaque number."
msgstr ""
#: library/io.rst:935
2016-10-30 09:46:26 +00:00
msgid ""
"Return the current stream position as an opaque number. The number does not "
"usually represent a number of bytes in the underlying binary storage."
msgstr ""
#: library/io.rst:941
2016-10-30 09:46:26 +00:00
msgid ""
"Write the string *s* to the stream and return the number of characters "
"written."
msgstr ""
#: library/io.rst:948
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"A buffered text stream providing higher-level access to a :class:"
"`BufferedIOBase` buffered binary stream. It inherits :class:`TextIOBase`."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:952
2016-10-30 09:46:26 +00:00
msgid ""
"*encoding* gives the name of the encoding that the stream will be decoded or "
2022-05-22 21:15:02 +00:00
"encoded with. It defaults to :func:`locale.getencoding()`. "
"``encoding=\"locale\"`` can be used to specify the current locale's encoding "
"explicitly. See :ref:`io-text-encoding` for more information."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:957
2016-10-30 09:46:26 +00:00
msgid ""
"*errors* is an optional string that specifies how encoding and decoding "
"errors are to be handled. Pass ``'strict'`` to raise a :exc:`ValueError` "
"exception if there is an encoding error (the default of ``None`` has the "
"same effect), or pass ``'ignore'`` to ignore errors. (Note that ignoring "
"encoding errors can lead to data loss.) ``'replace'`` causes a replacement "
"marker (such as ``'?'``) to be inserted where there is malformed data. "
"``'backslashreplace'`` causes malformed data to be replaced by a backslashed "
"escape sequence. When writing, ``'xmlcharrefreplace'`` (replace with the "
2022-03-23 17:40:12 +00:00
"appropriate XML character reference) or ``'namereplace'`` (replace with "
"``\\N{...}`` escape sequences) can be used. Any other error handling name "
2016-10-30 09:46:26 +00:00
"that has been registered with :func:`codecs.register_error` is also valid."
msgstr ""
#: library/io.rst:973
2016-10-30 09:46:26 +00:00
msgid ""
"*newline* controls how line endings are handled. It can be ``None``, "
"``''``, ``'\\n'``, ``'\\r'``, and ``'\\r\\n'``. It works as follows:"
msgstr ""
#: library/io.rst:976
2020-07-20 08:56:42 +00:00
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
"When reading input from the stream, if *newline* is ``None``, :term:"
"`universal newlines` mode is enabled. Lines in the input can end in "
"``'\\n'``, ``'\\r'``, or ``'\\r\\n'``, and these are translated into "
2020-07-20 08:56:42 +00:00
"``'\\n'`` before being returned to the caller. If *newline* is ``''``, "
"universal newlines mode is enabled, but line endings are returned to the "
"caller untranslated. If *newline* has any of the other legal values, input "
"lines are only terminated by the given string, and the line ending is "
"returned to the caller untranslated."
2016-10-30 09:46:26 +00:00
msgstr ""
"Lors de la lecture, si *newline* est ``None``, le mode :term:`universal "
"newlines` est activé. Les lignes lues peuvent terminer par ``'\\n'``, "
"``'\\r'``, ou ``'\\r\\n'``, qui sont remplacés par ``'\\n'``, avant d'être "
"données à l'appelant. S'il vaut ``''``, le mode *universal newline* est "
"activé mais les fin de lignes ne sont pas remplacés. S'il a n'importe quel "
"autre valeur autorisée, les lignes sont seulement terminées par la chaîne "
"donnée, qui est rendue tel qu'elle."
#: library/io.rst:985
2016-10-30 09:46:26 +00:00
msgid ""
"When writing output to the stream, if *newline* is ``None``, any ``'\\n'`` "
"characters written are translated to the system default line separator, :"
"data:`os.linesep`. If *newline* is ``''`` or ``'\\n'``, no translation "
"takes place. If *newline* is any of the other legal values, any ``'\\n'`` "
"characters written are translated to the given string."
msgstr ""
"Lors de l'écriture, si *newline* est ``None``, chaque ``'\\n'`` est remplacé "
"par le séparateur de lignes par défaut du système :data:`os.linesep`. Si "
"*newline* est ``*`` ou ``'\\n'`` aucun remplacent n'est effectué. Si "
"*newline* est un autre caractère valide, chaque ``'\\n'`` sera remplacé par "
"la chaîne donnée."
#: library/io.rst:991
2016-10-30 09:46:26 +00:00
msgid ""
"If *line_buffering* is ``True``, :meth:`flush` is implied when a call to "
2018-06-10 09:32:30 +00:00
"write contains a newline character or a carriage return."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:994
2016-10-30 09:46:26 +00:00
msgid ""
"If *write_through* is ``True``, calls to :meth:`write` are guaranteed not to "
"be buffered: any data written on the :class:`TextIOWrapper` object is "
"immediately handled to its underlying binary *buffer*."
msgstr ""
#: library/io.rst:998
2016-10-30 09:46:26 +00:00
msgid "The *write_through* argument has been added."
msgstr ""
#: library/io.rst:1001
2016-10-30 09:46:26 +00:00
msgid ""
"The default *encoding* is now ``locale.getpreferredencoding(False)`` instead "
"of ``locale.getpreferredencoding()``. Don't change temporary the locale "
"encoding using :func:`locale.setlocale`, use the current locale encoding "
"instead of the user preferred encoding."
msgstr ""
#: library/io.rst:1007
msgid ""
"The *encoding* argument now supports the ``\"locale\"`` dummy encoding name."
msgstr ""
#: library/io.rst:1010
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
":class:`TextIOWrapper` provides these data attributes and methods in "
"addition to those from :class:`TextIOBase` and :class:`IOBase`:"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:1015
2016-10-30 09:46:26 +00:00
msgid "Whether line buffering is enabled."
msgstr ""
#: library/io.rst:1019
2018-06-28 13:32:56 +00:00
msgid "Whether writes are passed immediately to the underlying binary buffer."
msgstr ""
#: library/io.rst:1027
2018-06-28 13:32:56 +00:00
msgid ""
"Reconfigure this text stream using new settings for *encoding*, *errors*, "
"*newline*, *line_buffering* and *write_through*."
msgstr ""
#: library/io.rst:1030
2018-06-28 13:32:56 +00:00
msgid ""
2019-09-04 09:35:23 +00:00
"Parameters not specified keep current settings, except ``errors='strict'`` "
"is used when *encoding* is specified but *errors* is not specified."
2018-06-28 13:32:56 +00:00
msgstr ""
#: library/io.rst:1034
2018-06-28 13:32:56 +00:00
msgid ""
"It is not possible to change the encoding or newline if some data has "
"already been read from the stream. On the other hand, changing encoding "
"after write is possible."
msgstr ""
#: library/io.rst:1038
2018-06-28 13:32:56 +00:00
msgid ""
"This method does an implicit stream flush before setting the new parameters."
msgstr ""
#: library/io.rst:1043
2022-05-22 21:15:02 +00:00
msgid "The method supports ``encoding=\"locale\"`` option."
msgstr ""
#: library/io.rst:1049
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"A text stream using an in-memory text buffer. It inherits :class:"
"`TextIOBase`."
msgstr ""
#: library/io.rst:1052
2020-07-20 08:56:42 +00:00
msgid ""
"The text buffer is discarded when the :meth:`~IOBase.close` method is called."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:1055
2016-10-30 09:46:26 +00:00
msgid ""
"The initial value of the buffer can be set by providing *initial_value*. If "
"newline translation is enabled, newlines will be encoded as if by :meth:"
"`~TextIOBase.write`. The stream is positioned at the start of the buffer "
"which emulates opening an existing file in a ``w+`` mode, making it ready "
"for an immediate write from the beginning or for a write that would "
"overwrite the initial value. To emulate opening a file in an ``a+`` mode "
"ready for appending, use ``f.seek(0, io.SEEK_END)`` to reposition the stream "
"at the end of the buffer."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:1064
2016-10-30 09:46:26 +00:00
msgid ""
2020-07-20 08:56:42 +00:00
"The *newline* argument works like that of :class:`TextIOWrapper`, except "
"that when writing output to the stream, if *newline* is ``None``, newlines "
"are written as ``\\n`` on all platforms."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:1068
2016-10-30 09:46:26 +00:00
msgid ""
":class:`StringIO` provides this method in addition to those from :class:"
2020-07-20 08:56:42 +00:00
"`TextIOBase` and :class:`IOBase`:"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/io.rst:1073
2016-10-30 09:46:26 +00:00
msgid ""
"Return a ``str`` containing the entire contents of the buffer. Newlines are "
"decoded as if by :meth:`~TextIOBase.read`, although the stream position is "
"not changed."
msgstr ""
#: library/io.rst:1077
2016-10-30 09:46:26 +00:00
msgid "Example usage::"
msgstr "Exemple d'utilisation ::"
2016-10-30 09:46:26 +00:00
#: library/io.rst:1099
2016-10-30 09:46:26 +00:00
msgid ""
"A helper codec that decodes newlines for :term:`universal newlines` mode. It "
"inherits :class:`codecs.IncrementalDecoder`."
msgstr ""
#: library/io.rst:1104
2016-10-30 09:46:26 +00:00
msgid "Performance"
2019-09-16 10:08:42 +00:00
msgstr "Performances"
2016-10-30 09:46:26 +00:00
#: library/io.rst:1106
2016-10-30 09:46:26 +00:00
msgid ""
"This section discusses the performance of the provided concrete I/O "
"implementations."
msgstr ""
#: library/io.rst:1112
2016-10-30 09:46:26 +00:00
msgid ""
"By reading and writing only large chunks of data even when the user asks for "
"a single byte, buffered I/O hides any inefficiency in calling and executing "
"the operating system's unbuffered I/O routines. The gain depends on the OS "
"and the kind of I/O which is performed. For example, on some modern OSes "
"such as Linux, unbuffered disk I/O can be as fast as buffered I/O. The "
"bottom line, however, is that buffered I/O offers predictable performance "
"regardless of the platform and the backing device. Therefore, it is almost "
"always preferable to use buffered I/O rather than unbuffered I/O for binary "
"data."
msgstr ""
#: library/io.rst:1124
2016-10-30 09:46:26 +00:00
msgid ""
"Text I/O over a binary storage (such as a file) is significantly slower than "
"binary I/O over the same storage, because it requires conversions between "
"unicode and binary data using a character codec. This can become noticeable "
"handling huge amounts of text data like large log files. Also, :meth:"
"`TextIOWrapper.tell` and :meth:`TextIOWrapper.seek` are both quite slow due "
"to the reconstruction algorithm used."
msgstr ""
#: library/io.rst:1131
2016-10-30 09:46:26 +00:00
msgid ""
":class:`StringIO`, however, is a native in-memory unicode container and will "
"exhibit similar speed to :class:`BytesIO`."
msgstr ""
#: library/io.rst:1135
2016-10-30 09:46:26 +00:00
msgid "Multi-threading"
msgstr "Fils d'exécution"
2016-10-30 09:46:26 +00:00
#: library/io.rst:1137
2016-10-30 09:46:26 +00:00
msgid ""
":class:`FileIO` objects are thread-safe to the extent that the operating "
"system calls (such as ``read(2)`` under Unix) they wrap are thread-safe too."
msgstr ""
#: library/io.rst:1140
2016-10-30 09:46:26 +00:00
msgid ""
"Binary buffered objects (instances of :class:`BufferedReader`, :class:"
"`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`) "
"protect their internal structures using a lock; it is therefore safe to call "
"them from multiple threads at once."
msgstr ""
#: library/io.rst:1145
2016-10-30 09:46:26 +00:00
msgid ":class:`TextIOWrapper` objects are not thread-safe."
msgstr ""
#: library/io.rst:1148
2016-10-30 09:46:26 +00:00
msgid "Reentrancy"
msgstr ""
#: library/io.rst:1150
2016-10-30 09:46:26 +00:00
msgid ""
"Binary buffered objects (instances of :class:`BufferedReader`, :class:"
"`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`) are "
"not reentrant. While reentrant calls will not happen in normal situations, "
"they can arise from doing I/O in a :mod:`signal` handler. If a thread tries "
"to re-enter a buffered object which it is already accessing, a :exc:"
"`RuntimeError` is raised. Note this doesn't prohibit a different thread "
"from entering the buffered object."
msgstr ""
#: library/io.rst:1158
2016-10-30 09:46:26 +00:00
msgid ""
"The above implicitly extends to text files, since the :func:`open()` "
"function will wrap a buffered object inside a :class:`TextIOWrapper`. This "
2020-07-20 08:56:42 +00:00
"includes standard streams and therefore affects the built-in :func:`print()` "
"function as well."
2016-10-30 09:46:26 +00:00
msgstr ""