python-docs-fr/library/atexit.po

150 lines
6.0 KiB
Plaintext

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2016, 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 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-10-30 10:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/atexit.rst:2
msgid ":mod:`atexit` --- Exit handlers"
msgstr ":mod:`atexit` --- Gestionnaire de fin de programme"
#: ../Doc/library/atexit.rst:12
msgid "**Source code:** :source:`Lib/atexit.py`"
msgstr ""
#: ../Doc/library/atexit.rst:16
msgid ""
"The :mod:`atexit` module defines a single function to register cleanup "
"functions. Functions thus registered are automatically executed upon normal "
"interpreter termination. :mod:`atexit` runs these functions in the "
"*reverse* order in which they were registered; if you register ``A``, ``B``, "
"and ``C``, at interpreter termination time they will be run in the order "
"``C``, ``B``, ``A``."
msgstr ""
#: ../Doc/library/atexit.rst:23
msgid ""
"**Note:** The functions registered via this module are not called when the "
"program is killed by a signal not handled by Python, when a Python fatal "
"internal error is detected, or when :func:`os._exit` is called."
msgstr ""
"**Note:** Les fonctions inscrites via ce module ne sont pas appelées quand "
"le programme est tué par un signal non géré par Python, quand une erreur "
"fatale interne de Python est détectée, ou quand :func:`os._exit` est appelé."
#: ../Doc/library/atexit.rst:29
msgid ""
"This is an alternate interface to the functionality provided by the :func:"
"`sys.exitfunc` variable."
msgstr ""
#: ../Doc/library/atexit.rst:32
msgid ""
"Note: This module is unlikely to work correctly when used with other code "
"that sets ``sys.exitfunc``. In particular, other core Python modules are "
"free to use :mod:`atexit` without the programmer's knowledge. Authors who "
"use ``sys.exitfunc`` should convert their code to use :mod:`atexit` "
"instead. The simplest way to convert code that sets ``sys.exitfunc`` is to "
"import :mod:`atexit` and register the function that had been bound to ``sys."
"exitfunc``."
msgstr ""
#: ../Doc/library/atexit.rst:42
msgid ""
"Register *func* as a function to be executed at termination. Any optional "
"arguments that are to be passed to *func* must be passed as arguments to :"
"func:`register`. It is possible to register the same function and arguments "
"more than once."
msgstr ""
"Inscrit *func* comme une fonction à exécuter au moment de l'arrêt de "
"l'interpréteur. Tout argument optionnel qui doit être passé à *func* doit "
"être passé comme argument à :func:`register`. Il est possible d'inscrire les "
"mêmes fonctions et arguments plus d'une fois."
#: ../Doc/library/atexit.rst:47
msgid ""
"At normal program termination (for instance, if :func:`sys.exit` is called "
"or the main module's execution completes), all functions registered are "
"called in last in, first out order. The assumption is that lower level "
"modules will normally be imported before higher level modules and thus must "
"be cleaned up later."
msgstr ""
#: ../Doc/library/atexit.rst:53
msgid ""
"If an exception is raised during execution of the exit handlers, a traceback "
"is printed (unless :exc:`SystemExit` is raised) and the exception "
"information is saved. After all exit handlers have had a chance to run the "
"last exception to be raised is re-raised."
msgstr ""
"Si une exception est levée durant l'exécution du gestionnaire de fin de "
"programme, une trace d'appels est affichée (à moins que :exc:`SystemExit` "
"ait été levée) et les informations de l'exception sont sauvegardées. Une "
"fois que tous les gestionnaires de fin de programme ont eu une chance de "
"s'exécuter, la dernière exception à avoir été levée l'est de nouveau."
#: ../Doc/library/atexit.rst:58
msgid ""
"This function now returns *func*, which makes it possible to use it as a "
"decorator."
msgstr ""
#: ../Doc/library/atexit.rst:65
msgid "Module :mod:`readline`"
msgstr "Module :mod:`readline`"
#: ../Doc/library/atexit.rst:66
msgid ""
"Useful example of :mod:`atexit` to read and write :mod:`readline` history "
"files."
msgstr ""
"Un exemple utile de l'usage de :mod:`atexit` pour lire et écrire des "
"fichiers d'historique :mod:`readline`."
#: ../Doc/library/atexit.rst:72
msgid ":mod:`atexit` Example"
msgstr "Exemple avec :mod:`atexit`"
#: ../Doc/library/atexit.rst:74
msgid ""
"The following simple example demonstrates how a module can initialize a "
"counter from a file when it is imported and save the counter's updated value "
"automatically when the program terminates without relying on the application "
"making an explicit call into this module at termination. ::"
msgstr ""
"Le simple exemple suivant démontre comment un module peut initialiser un "
"compteur depuis un fichier quand il est importé, et sauver le valeur mise à "
"jour du compteur automatiquement quand le programme se termine, sans avoir "
"besoin que l'application fasse un appel explicite dans ce module au moment "
"de l'arrêt de l'interpréteur. ::"
#: ../Doc/library/atexit.rst:94
msgid ""
"Positional and keyword arguments may also be passed to :func:`register` to "
"be passed along to the registered function when it is called::"
msgstr ""
"Les arguments positionnels et par mot-clé peuvent aussi être passés à :func:"
"`register` afin d'être repassés à la fonction inscrite lors de son appel : ::"
#: ../Doc/library/atexit.rst:106
msgid "Usage as a :term:`decorator`::"
msgstr "Utilisation en tant que :term:`décorateur <decorator>` : ::"
#: ../Doc/library/atexit.rst:114
msgid "This only works with functions that can be called without arguments."
msgstr ""
"Ceci fonctionne uniquement avec des fonctions qui peuvent être appelées sans "
"argument."