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

156 lines
4.9 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"
"POT-Creation-Date: 2021-09-23 16:16+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"
#: library/pyclbr.rst:2
2020-05-24 14:31:50 +00:00
msgid ":mod:`pyclbr` --- Python module browser support"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:9
2016-10-30 09:46:26 +00:00
msgid "**Source code:** :source:`Lib/pyclbr.py`"
msgstr "**Code source :** :source:`Lib/pyclbr.py`"
#: library/pyclbr.rst:13
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"The :mod:`pyclbr` module provides limited information about the functions, "
2018-09-15 20:37:31 +00:00
"classes, and methods defined in a Python-coded module. The information is "
2018-06-28 13:32:56 +00:00
"sufficient to implement a module browser. The information is extracted from "
2018-09-15 20:37:31 +00:00
"the Python source code rather than by importing the module, so this module "
2018-06-28 13:32:56 +00:00
"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."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:25
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"Return a dictionary mapping module-level class names to class descriptors. "
"If possible, descriptors for imported base classes are included. Parameter "
"*module* is a string with the name of the module to read; it may be the name "
"of a module within a package. If given, *path* is a sequence of directory "
"paths prepended to ``sys.path``, which is used to locate the module source "
"code."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:32
2020-05-24 14:31:50 +00:00
msgid ""
"This function is the original interface and is only kept for back "
"compatibility. It returns a filtered version of the following."
msgstr ""
#: library/pyclbr.rst:38
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"Return a dictionary-based tree containing a function or class descriptors "
"for each function and class defined in the module with a ``def`` or "
"``class`` statement. The returned dictionary maps module-level function and "
"class names to their descriptors. Nested objects are entered into the "
"children dictionary of their parent. As with readmodule, *module* names the "
"module to be read and *path* is prepended to sys.path. If the module being "
"read is a package, the returned dictionary has a key ``'__path__'`` whose "
"value is a list containing the package search path."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:48
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"Descriptors for nested definitions. They are accessed through the new "
"children attribute. Each has a new parent attribute."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:52
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"The descriptors returned by these functions are instances of Function and "
"Class classes. Users are not expected to create instances of these classes."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:60
2018-06-28 13:32:56 +00:00
msgid "Function Objects"
msgstr "Objets fonctions"
#: library/pyclbr.rst:61
2018-06-28 13:32:56 +00:00
msgid ""
"Class :class:`Function` instances describe functions defined by def "
"statements. They have the following attributes:"
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:67
2018-06-28 13:32:56 +00:00
msgid "Name of the file in which the function is defined."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:72
2018-06-28 13:32:56 +00:00
msgid "The name of the module defining the function described."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:77
2018-06-28 13:32:56 +00:00
msgid "The name of the function."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:132
2018-06-28 13:32:56 +00:00
msgid "The line number in the file where the definition starts."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:87
2018-06-28 13:32:56 +00:00
msgid "For top-level functions, None. For nested functions, the parent."
msgstr ""
2016-10-30 09:46:26 +00:00
#: library/pyclbr.rst:144
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"A dictionary mapping names to descriptors for nested functions and classes."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:102
msgid ""
"``True`` for functions that are defined with the ``async`` prefix, ``False`` "
"otherwise."
msgstr ""
#: library/pyclbr.rst:110
2018-06-28 13:32:56 +00:00
msgid "Class Objects"
msgstr "Objets classes"
2018-06-28 13:32:56 +00:00
#: library/pyclbr.rst:111
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"Class :class:`Class` instances describe classes defined by class "
"statements. They have the same attributes as Functions and two more."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:117
2018-06-28 13:32:56 +00:00
msgid "Name of the file in which the class is defined."
msgstr ""
#: library/pyclbr.rst:122
2018-06-28 13:32:56 +00:00
msgid "The name of the module defining the class described."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:127
2018-06-28 13:32:56 +00:00
msgid "The name of the class."
msgstr ""
#: library/pyclbr.rst:137
2018-06-28 13:32:56 +00:00
msgid "For top-level classes, None. For nested classes, the parent."
msgstr ""
#: library/pyclbr.rst:152
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"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_ex` are listed as a string "
"with the class name instead of as :class:`Class` objects."
2016-10-30 09:46:26 +00:00
msgstr ""
#: library/pyclbr.rst:161
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"A dictionary mapping method names to line numbers. This can be derived from "
"the newer children dictionary, but remains for back-compatibility."
2016-10-30 09:46:26 +00:00
msgstr ""