python-docs-fr/c-api/marshal.po

113 lines
3.6 KiB
Plaintext
Raw 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"
2020-09-11 07:11:46 +00:00
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
2016-10-30 09:46:26 +00:00
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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"
#: c-api/marshal.rst:6
2016-10-30 09:46:26 +00:00
msgid "Data marshalling support"
msgstr ""
#: c-api/marshal.rst:8
2016-10-30 09:46:26 +00:00
msgid ""
"These routines allow C code to work with serialized objects using the same "
"data format as the :mod:`marshal` module. There are functions to write data "
"into the serialization format, and additional functions that can be used to "
"read the data back. Files used to store marshalled data must be opened in "
"binary mode."
msgstr ""
#: c-api/marshal.rst:14
2016-10-30 09:46:26 +00:00
msgid "Numeric values are stored with the least significant byte first."
msgstr ""
#: c-api/marshal.rst:16
2016-10-30 09:46:26 +00:00
msgid ""
"The module supports two versions of the data format: version 0 is the "
"historical version, version 1 shares interned strings in the file, and upon "
"unmarshalling. Version 2 uses a binary format for floating point numbers. "
"``Py_MARSHAL_VERSION`` indicates the current file format (currently 2)."
2016-10-30 09:46:26 +00:00
msgstr ""
#: c-api/marshal.rst:24
2016-10-30 09:46:26 +00:00
msgid ""
"Marshal a :c:type:`long` integer, *value*, to *file*. This will only write "
"the least-significant 32 bits of *value*; regardless of the size of the "
"native :c:type:`long` type. *version* indicates the file format."
msgstr ""
#: c-api/marshal.rst:31
2016-10-30 09:46:26 +00:00
msgid ""
"Marshal a Python object, *value*, to *file*. *version* indicates the file "
"format."
msgstr ""
#: c-api/marshal.rst:37
2016-10-30 09:46:26 +00:00
msgid ""
2017-04-02 20:14:06 +00:00
"Return a bytes object containing the marshalled representation of *value*. "
2016-10-30 09:46:26 +00:00
"*version* indicates the file format."
msgstr ""
#: c-api/marshal.rst:41
2016-10-30 09:46:26 +00:00
msgid "The following functions allow marshalled values to be read back in."
msgstr ""
#: c-api/marshal.rst:46
2016-10-30 09:46:26 +00:00
msgid ""
2020-09-11 07:11:46 +00:00
"Return a C :c:type:`long` from the data stream in a :c:type:`FILE*` opened "
2016-10-30 09:46:26 +00:00
"for reading. Only a 32-bit value can be read in using this function, "
"regardless of the native size of :c:type:`long`."
msgstr ""
2020-07-20 08:56:42 +00:00
#: c-api/marshal.rst:50 c-api/marshal.rst:60
msgid ""
"On error, sets the appropriate exception (:exc:`EOFError`) and returns "
"``-1``."
2016-10-30 09:46:26 +00:00
msgstr ""
#: c-api/marshal.rst:56
2016-10-30 09:46:26 +00:00
msgid ""
2020-09-11 07:11:46 +00:00
"Return a C :c:type:`short` from the data stream in a :c:type:`FILE*` opened "
"for reading. Only a 16-bit value can be read in using this function, "
2016-10-30 09:46:26 +00:00
"regardless of the native size of :c:type:`short`."
msgstr ""
#: c-api/marshal.rst:66
2016-10-30 09:46:26 +00:00
msgid ""
2020-09-11 07:11:46 +00:00
"Return a Python object from the data stream in a :c:type:`FILE*` opened for "
"reading."
2016-10-30 09:46:26 +00:00
msgstr ""
2020-07-20 08:56:42 +00:00
#: c-api/marshal.rst:69 c-api/marshal.rst:83 c-api/marshal.rst:92
2016-10-30 09:46:26 +00:00
msgid ""
"On error, sets the appropriate exception (:exc:`EOFError`, :exc:`ValueError` "
"or :exc:`TypeError`) and returns ``NULL``."
2016-10-30 09:46:26 +00:00
msgstr ""
#: c-api/marshal.rst:75
2016-10-30 09:46:26 +00:00
msgid ""
2020-09-11 07:11:46 +00:00
"Return a Python object from the data stream in a :c:type:`FILE*` opened for "
"reading. Unlike :c:func:`PyMarshal_ReadObjectFromFile`, this function "
2016-10-30 09:46:26 +00:00
"assumes that no further objects will be read from the file, allowing it to "
"aggressively load file data into memory so that the de-serialization can "
"operate from data in memory rather than reading a byte at a time from the "
"file. Only use these variant if you are certain that you won't be reading "
"anything else from the file."
msgstr ""
#: c-api/marshal.rst:89
2016-10-30 09:46:26 +00:00
msgid ""
2017-04-02 20:14:06 +00:00
"Return a Python object from the data stream in a byte buffer containing "
"*len* bytes pointed to by *data*."
2016-10-30 09:46:26 +00:00
msgstr ""