python-docs-fr/library/pyclbr.po

129 lines
4.1 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/pyclbr.rst:2
msgid ":mod:`pyclbr` --- Python class browser support"
msgstr ""
#: ../Doc/library/pyclbr.rst:8
msgid "**Source code:** :source:`Lib/pyclbr.py`"
msgstr "**Code source :** :source:`Lib/pyclbr.py`"
#: ../Doc/library/pyclbr.rst:12
msgid ""
"The :mod:`pyclbr` module can be used to determine some limited information "
"about the classes, methods and top-level functions defined in a module. The "
"information provided is sufficient to implement a traditional three-pane "
"class browser. The information is extracted from the source code rather "
"than by importing the module, so this module is safe to use with untrusted "
"code. This restriction makes it impossible to use this module with modules "
"not implemented in Python, including all standard and optional extension "
"modules."
msgstr ""
#: ../Doc/library/pyclbr.rst:24
msgid ""
"Read a module and return a dictionary mapping class names to class "
"descriptor objects. The parameter *module* should be the name of a module "
"as a string; it may be the name of a module within a package. The *path* "
"parameter should be a sequence, and is used to augment the value of ``sys."
"path``, which is used to locate module source code."
msgstr ""
#: ../Doc/library/pyclbr.rst:33
msgid ""
"Like :func:`readmodule`, but the returned dictionary, in addition to mapping "
"class names to class descriptor objects, also maps top-level function names "
"to function descriptor objects. Moreover, if the module being read is a "
"package, the key ``'__path__'`` in the returned dictionary has as its value "
"a list which contains the package search path."
msgstr ""
#: ../Doc/library/pyclbr.rst:44
msgid "Class Objects"
msgstr "Objets classes"
#: ../Doc/library/pyclbr.rst:46
msgid ""
"The :class:`Class` objects used as values in the dictionary returned by :"
"func:`readmodule` and :func:`readmodule_ex` provide the following data "
"attributes:"
msgstr ""
#: ../Doc/library/pyclbr.rst:53
msgid ""
"The name of the module defining the class described by the class descriptor."
msgstr ""
#: ../Doc/library/pyclbr.rst:58
msgid "The name of the class."
msgstr ""
#: ../Doc/library/pyclbr.rst:63
msgid ""
"A list of :class:`Class` objects which describe the immediate base classes "
"of the class being described. Classes which are named as superclasses but "
"which are not discoverable by :func:`readmodule` are listed as a string with "
"the class name instead of as :class:`Class` objects."
msgstr ""
#: ../Doc/library/pyclbr.rst:72
msgid "A dictionary mapping method names to line numbers."
msgstr ""
#: ../Doc/library/pyclbr.rst:77
msgid "Name of the file containing the ``class`` statement defining the class."
msgstr ""
#: ../Doc/library/pyclbr.rst:82
msgid ""
"The line number of the ``class`` statement within the file named by :attr:"
"`~Class.file`."
msgstr ""
#: ../Doc/library/pyclbr.rst:89
msgid "Function Objects"
msgstr "Objets fonctions"
#: ../Doc/library/pyclbr.rst:91
msgid ""
"The :class:`Function` objects used as values in the dictionary returned by :"
"func:`readmodule_ex` provide the following attributes:"
msgstr ""
#: ../Doc/library/pyclbr.rst:97
msgid ""
"The name of the module defining the function described by the function "
"descriptor."
msgstr ""
#: ../Doc/library/pyclbr.rst:103
msgid "The name of the function."
msgstr ""
#: ../Doc/library/pyclbr.rst:108
msgid ""
"Name of the file containing the ``def`` statement defining the function."
msgstr ""
#: ../Doc/library/pyclbr.rst:113
msgid ""
"The line number of the ``def`` statement within the file named by :attr:"
"`~Function.file`."
msgstr ""