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

146 lines
4.9 KiB
Plaintext
Raw Normal View History

2016-10-30 09:46:26 +00:00
# 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"
2018-06-28 13:32:56 +00:00
"POT-Creation-Date: 2018-06-28 15:29+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 ""
2018-06-28 13:32:56 +00:00
"The :mod:`pyclbr` module provides limited information about the functions, "
"classes, and methods defined in a python-coded module. The information is "
"sufficient to implement a module browser. The information is extracted from "
"the python 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."
2016-10-30 09:46:26 +00:00
msgstr ""
#: ../Doc/library/pyclbr.rst:25
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 ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:35
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 ""
#: ../Doc/library/pyclbr.rst:45
msgid ""
2018-06-28 13:32:56 +00:00
"Descriptors for nested definitions. They are accessed through the new "
"children attibute. Each has a new parent attribute."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:49
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 ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:57
msgid "Function Objects"
msgstr "Objets fonctions"
#: ../Doc/library/pyclbr.rst:58
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 ""
#: ../Doc/library/pyclbr.rst:64
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 ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:69
msgid "The name of the module defining the function described."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:74
msgid "The name of the function."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:79 ../Doc/library/pyclbr.rst:122
msgid "The line number in the file where the definition starts."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:84
msgid "For top-level functions, None. For nested functions, the parent."
msgstr ""
2016-10-30 09:46:26 +00:00
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:91 ../Doc/library/pyclbr.rst:134
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 ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:100
msgid "Class Objects"
msgstr "Objets classes"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:101
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 ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:107
msgid "Name of the file in which the class is defined."
msgstr ""
#: ../Doc/library/pyclbr.rst:112
msgid "The name of the module defining the class described."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:117
msgid "The name of the class."
msgstr ""
#: ../Doc/library/pyclbr.rst:127
msgid "For top-level classes, None. For nested classes, the parent."
msgstr ""
#: ../Doc/library/pyclbr.rst:142
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 ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/pyclbr.rst:151
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 ""