@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.7\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2020-02-10 04:47 +0000\n "
14
+ "POT-Creation-Date : 2020-02-24 04:53 +0000\n "
15
15
"PO-Revision-Date : 2019-09-01 03:27+0000\n "
16
16
"Last-Translator : tomo, 2019\n "
17
17
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -22,8 +22,8 @@ msgstr ""
22
22
"Plural-Forms : nplurals=1; plural=0;\n "
23
23
24
24
#: ../../library/pyclbr.rst:2
25
- msgid ":mod:`pyclbr` --- Python class browser support"
26
- msgstr ":mod:`pyclbr` --- Python クラスブラウザサポート "
25
+ msgid ":mod:`pyclbr` --- Python module browser support"
26
+ msgstr ""
27
27
28
28
#: ../../library/pyclbr.rst:9
29
29
msgid "**Source code:** :source:`Lib/pyclbr.py`"
@@ -50,7 +50,13 @@ msgid ""
50
50
"code."
51
51
msgstr ""
52
52
53
- #: ../../library/pyclbr.rst:35
53
+ #: ../../library/pyclbr.rst:32
54
+ msgid ""
55
+ "This function is the original interface and is only kept for back "
56
+ "compatibility. It returns a filtered version of the following."
57
+ msgstr ""
58
+
59
+ #: ../../library/pyclbr.rst:38
54
60
msgid ""
55
61
"Return a dictionary-based tree containing a function or class descriptors "
56
62
"for each function and class defined in the module with a ``def`` or "
@@ -62,88 +68,88 @@ msgid ""
62
68
"value is a list containing the package search path."
63
69
msgstr ""
64
70
65
- #: ../../library/pyclbr.rst:45
71
+ #: ../../library/pyclbr.rst:48
66
72
msgid ""
67
73
"Descriptors for nested definitions. They are accessed through the new "
68
74
"children attribute. Each has a new parent attribute."
69
75
msgstr ""
70
76
71
- #: ../../library/pyclbr.rst:49
77
+ #: ../../library/pyclbr.rst:52
72
78
msgid ""
73
79
"The descriptors returned by these functions are instances of Function and "
74
80
"Class classes. Users are not expected to create instances of these classes."
75
81
msgstr ""
76
82
77
- #: ../../library/pyclbr.rst:57
83
+ #: ../../library/pyclbr.rst:60
78
84
msgid "Function Objects"
79
85
msgstr "Function オブジェクト"
80
86
81
- #: ../../library/pyclbr.rst:58
87
+ #: ../../library/pyclbr.rst:61
82
88
msgid ""
83
89
"Class :class:`Function` instances describe functions defined by def "
84
90
"statements. They have the following attributes:"
85
91
msgstr ""
86
92
87
- #: ../../library/pyclbr.rst:64
93
+ #: ../../library/pyclbr.rst:67
88
94
msgid "Name of the file in which the function is defined."
89
95
msgstr ""
90
96
91
- #: ../../library/pyclbr.rst:69
97
+ #: ../../library/pyclbr.rst:72
92
98
msgid "The name of the module defining the function described."
93
99
msgstr ""
94
100
95
- #: ../../library/pyclbr.rst:74
101
+ #: ../../library/pyclbr.rst:77
96
102
msgid "The name of the function."
97
103
msgstr "関数の名前です。"
98
104
99
- #: ../../library/pyclbr.rst:79 ../../library/pyclbr.rst:122
105
+ #: ../../library/pyclbr.rst:82 ../../library/pyclbr.rst:125
100
106
msgid "The line number in the file where the definition starts."
101
107
msgstr ""
102
108
103
- #: ../../library/pyclbr.rst:84
109
+ #: ../../library/pyclbr.rst:87
104
110
msgid "For top-level functions, None. For nested functions, the parent."
105
111
msgstr ""
106
112
107
- #: ../../library/pyclbr.rst:91 ../../library/pyclbr.rst:134
113
+ #: ../../library/pyclbr.rst:94 ../../library/pyclbr.rst:137
108
114
msgid ""
109
115
"A dictionary mapping names to descriptors for nested functions and classes."
110
116
msgstr ""
111
117
112
- #: ../../library/pyclbr.rst:100
118
+ #: ../../library/pyclbr.rst:103
113
119
msgid "Class Objects"
114
120
msgstr "クラスオブジェクト"
115
121
116
- #: ../../library/pyclbr.rst:101
122
+ #: ../../library/pyclbr.rst:104
117
123
msgid ""
118
124
"Class :class:`Class` instances describe classes defined by class statements."
119
125
" They have the same attributes as Functions and two more."
120
126
msgstr ""
121
127
122
- #: ../../library/pyclbr.rst:107
128
+ #: ../../library/pyclbr.rst:110
123
129
msgid "Name of the file in which the class is defined."
124
130
msgstr ""
125
131
126
- #: ../../library/pyclbr.rst:112
132
+ #: ../../library/pyclbr.rst:115
127
133
msgid "The name of the module defining the class described."
128
134
msgstr ""
129
135
130
- #: ../../library/pyclbr.rst:117
136
+ #: ../../library/pyclbr.rst:120
131
137
msgid "The name of the class."
132
138
msgstr "クラスの名前です。"
133
139
134
- #: ../../library/pyclbr.rst:127
140
+ #: ../../library/pyclbr.rst:130
135
141
msgid "For top-level classes, None. For nested classes, the parent."
136
142
msgstr ""
137
143
138
- #: ../../library/pyclbr.rst:142
144
+ #: ../../library/pyclbr.rst:145
139
145
msgid ""
140
146
"A list of :class:`Class` objects which describe the immediate base classes "
141
147
"of the class being described. Classes which are named as superclasses but "
142
148
"which are not discoverable by :func:`readmodule_ex` are listed as a string "
143
149
"with the class name instead of as :class:`Class` objects."
144
150
msgstr ""
145
151
146
- #: ../../library/pyclbr.rst:151
152
+ #: ../../library/pyclbr.rst:154
147
153
msgid ""
148
154
"A dictionary mapping method names to line numbers. This can be derived from"
149
155
" the newer children dictionary, but remains for back-compatibility."
0 commit comments