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

130 lines
4.1 KiB
Plaintext
Raw Normal View History

2016-10-30 09:46:26 +00:00
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-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 3.6\n"
"Report-Msgid-Bugs-To: \n"
2017-04-02 20:14:06 +00:00
"POT-Creation-Date: 2017-04-02 22:11+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"
"Language-Team: LANGUAGE <LL@li.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"
#: ../Doc/library/pyclbr.rst:2
msgid ":mod:`pyclbr` --- Python class browser support"
msgstr ""
#: ../Doc/library/pyclbr.rst:9
msgid "**Source code:** :source:`Lib/pyclbr.py`"
msgstr "**Code source :** :source:`Lib/pyclbr.py`"
#: ../Doc/library/pyclbr.rst:13
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:25
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:34
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:45
msgid "Class Objects"
msgstr "Les objets classe"
#: ../Doc/library/pyclbr.rst:47
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:54
msgid ""
"The name of the module defining the class described by the class descriptor."
msgstr ""
#: ../Doc/library/pyclbr.rst:59
msgid "The name of the class."
msgstr ""
#: ../Doc/library/pyclbr.rst:64
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:73
msgid "A dictionary mapping method names to line numbers."
msgstr ""
#: ../Doc/library/pyclbr.rst:78
msgid "Name of the file containing the ``class`` statement defining the class."
msgstr ""
#: ../Doc/library/pyclbr.rst:83
msgid ""
"The line number of the ``class`` statement within the file named by :attr:"
"`~Class.file`."
msgstr ""
#: ../Doc/library/pyclbr.rst:90
msgid "Function Objects"
msgstr "Objets fonctions"
2016-10-30 09:46:26 +00:00
#: ../Doc/library/pyclbr.rst:92
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:98
msgid ""
"The name of the module defining the function described by the function "
"descriptor."
msgstr ""
#: ../Doc/library/pyclbr.rst:104
msgid "The name of the function."
msgstr ""
#: ../Doc/library/pyclbr.rst:109
msgid ""
"Name of the file containing the ``def`` statement defining the function."
msgstr ""
#: ../Doc/library/pyclbr.rst:114
msgid ""
"The line number of the ``def`` statement within the file named by :attr:"
"`~Function.file`."
msgstr ""