Make merge (#1766)
* Make merge * Avoid a newline at each run of merge.py.
This commit is contained in:
parent ff88ce44c3
commit 4955f79c65
20 changed files with 2662 additions and 2439 deletions
| | @ -5,14 +5,14 @@ msgid "" | |||
msgstr "" | ||||
"Project-Id-Version: Python 3\n" | ||||
"Report-Msgid-Bugs-To: \n" | ||||
"POT-Creation-Date: 2021-01-27 19:26+0100\n" | ||||
"POT-Creation-Date: 2021-11-04 18:14+0100\n" | ||||
"PO-Revision-Date: 2021-10-27 19:19+0200\n" | ||||
"Last-Translator: \n" | ||||
"Language-Team: FRENCH <traductions@lists.afpy.org>\n" | ||||
"Language: fr\n" | ||||
"MIME-Version: 1.0\n" | ||||
"Content-Type: text/plain; charset=UTF-8\n" | ||||
"Content-Transfer-Encoding: 8bit\n" | ||||
"Last-Translator: \n" | ||||
"X-Generator: Poedit 3.0\n" | ||||
| ||||
#: c-api/bool.rst:6 | ||||
| | | |||
| | @ -5,7 +5,7 @@ msgid "" | |||
msgstr "" | ||||
"Project-Id-Version: Python 3\n" | ||||
"Report-Msgid-Bugs-To: \n" | ||||
"POT-Creation-Date: 2021-09-23 16:16+0200\n" | ||||
"POT-Creation-Date: 2021-11-04 18:14+0100\n" | ||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||||
"Language-Team: FRENCH <traductions@lists.afpy.org>\n" | ||||
| | @ -60,14 +60,31 @@ msgid "" | |||
"initialized, it must call :c:func:`PyObject_GC_Track`." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:37 | ||||
#: c-api/gcsupport.rst:36 | ||||
msgid "" | ||||
"Similarly, the deallocator for the object must conform to a similar pair of " | ||||
"rules:" | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:39 | ||||
msgid "" | ||||
"Before fields which refer to other containers are invalidated, :c:func:" | ||||
"`PyObject_GC_UnTrack` must be called." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:42 | ||||
msgid "" | ||||
"The object's memory must be deallocated using :c:func:`PyObject_GC_Del`." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:45 | ||||
msgid "" | ||||
"If a type adds the Py_TPFLAGS_HAVE_GC, then it *must* implement at least a :" | ||||
"c:member:`~PyTypeObject.tp_traverse` handler or explicitly use one from its " | ||||
"subclass or subclasses." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:41 | ||||
#: c-api/gcsupport.rst:49 | ||||
msgid "" | ||||
"When calling :c:func:`PyType_Ready` or some of the APIs that indirectly call " | ||||
"it like :c:func:`PyType_FromSpecWithBases` or :c:func:`PyType_FromSpec` the " | ||||
| | @ -78,26 +95,26 @@ msgid "" | |||
"include the :const:`Py_TPFLAGS_HAVE_GC` flag." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:51 | ||||
#: c-api/gcsupport.rst:59 | ||||
msgid "" | ||||
"Analogous to :c:func:`PyObject_New` but for container objects with the :" | ||||
"const:`Py_TPFLAGS_HAVE_GC` flag set." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:57 | ||||
#: c-api/gcsupport.rst:65 | ||||
msgid "" | ||||
"Analogous to :c:func:`PyObject_NewVar` but for container objects with the :" | ||||
"const:`Py_TPFLAGS_HAVE_GC` flag set." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:63 | ||||
#: c-api/gcsupport.rst:71 | ||||
msgid "" | ||||
"Resize an object allocated by :c:func:`PyObject_NewVar`. Returns the " | ||||
"resized object or ``NULL`` on failure. *op* must not be tracked by the " | ||||
"collector yet." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:69 | ||||
#: c-api/gcsupport.rst:77 | ||||
msgid "" | ||||
"Adds the object *op* to the set of container objects tracked by the " | ||||
"collector. The collector can run at unexpected times so objects must be " | ||||
| | @ -106,55 +123,38 @@ msgid "" | |||
"usually near the end of the constructor." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:78 | ||||
#: c-api/gcsupport.rst:86 | ||||
msgid "" | ||||
"Returns non-zero if the object implements the garbage collector protocol, " | ||||
"otherwise returns 0." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:81 | ||||
#: c-api/gcsupport.rst:89 | ||||
msgid "" | ||||
"The object cannot be tracked by the garbage collector if this function " | ||||
"returns 0." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:86 | ||||
#: c-api/gcsupport.rst:94 | ||||
msgid "" | ||||
"Returns 1 if the object type of *op* implements the GC protocol and *op* is " | ||||
"being currently tracked by the garbage collector and 0 otherwise." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:89 | ||||
#: c-api/gcsupport.rst:97 | ||||
msgid "This is analogous to the Python function :func:`gc.is_tracked`." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:96 | ||||
#: c-api/gcsupport.rst:104 | ||||
msgid "" | ||||
"Returns 1 if the object type of *op* implements the GC protocol and *op* has " | ||||
"been already finalized by the garbage collector and 0 otherwise." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:99 | ||||
#: c-api/gcsupport.rst:107 | ||||
msgid "This is analogous to the Python function :func:`gc.is_finalized`." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:103 | ||||
msgid "" | ||||
"Similarly, the deallocator for the object must conform to a similar pair of " | ||||
"rules:" | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:106 | ||||
msgid "" | ||||
"Before fields which refer to other containers are invalidated, :c:func:" | ||||
"`PyObject_GC_UnTrack` must be called." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:109 | ||||
msgid "" | ||||
"The object's memory must be deallocated using :c:func:`PyObject_GC_Del`." | ||||
msgstr "" | ||||
| ||||
#: c-api/gcsupport.rst:114 | ||||
msgid "" | ||||
"Releases memory allocated to an object using :c:func:`PyObject_GC_New` or :c:" | ||||
| | | |||
677 c-api/typeobj.po
677
c-api/typeobj.po File diff suppressed because it is too large Load diff
Loading…
Add table
Add a link
Reference in a new issue