7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.10\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
- "POT-Creation-Date : 2021-09-13 00:11 +0000\n "
10
+ "POT-Creation-Date : 2022-06-12 00:17 +0000\n "
11
11
"PO-Revision-Date : 2015-12-09 17:51+0000\n "
12
12
"Last-Translator : Liang-Bo Wang <me@liang2.tw>\n "
13
13
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -89,137 +89,139 @@ msgid ""
89
89
msgstr ""
90
90
91
91
#: ../../library/symtable.rst:72
92
- msgid "Return a list of names of symbols in this table."
92
+ msgid ""
93
+ "Return a view object containing the names of symbols in the table. See the :"
94
+ "ref:`documentation of view objects <dict-views>`."
93
95
msgstr ""
94
96
95
- #: ../../library/symtable.rst:76
97
+ #: ../../library/symtable.rst:77
96
98
msgid "Lookup *name* in the table and return a :class:`Symbol` instance."
97
99
msgstr ""
98
100
99
- #: ../../library/symtable.rst:80
101
+ #: ../../library/symtable.rst:81
100
102
msgid "Return a list of :class:`Symbol` instances for names in the table."
101
103
msgstr ""
102
104
103
- #: ../../library/symtable.rst:84
105
+ #: ../../library/symtable.rst:85
104
106
msgid "Return a list of the nested symbol tables."
105
107
msgstr ""
106
108
107
- #: ../../library/symtable.rst:89
109
+ #: ../../library/symtable.rst:90
108
110
msgid ""
109
111
"A namespace for a function or method. This class inherits :class:"
110
112
"`SymbolTable`."
111
113
msgstr ""
112
114
113
- #: ../../library/symtable.rst:94
115
+ #: ../../library/symtable.rst:95
114
116
msgid "Return a tuple containing names of parameters to this function."
115
117
msgstr ""
116
118
117
- #: ../../library/symtable.rst:98
119
+ #: ../../library/symtable.rst:99
118
120
msgid "Return a tuple containing names of locals in this function."
119
121
msgstr ""
120
122
121
- #: ../../library/symtable.rst:102
123
+ #: ../../library/symtable.rst:103
122
124
msgid "Return a tuple containing names of globals in this function."
123
125
msgstr ""
124
126
125
- #: ../../library/symtable.rst:106
127
+ #: ../../library/symtable.rst:107
126
128
msgid "Return a tuple containing names of nonlocals in this function."
127
129
msgstr ""
128
130
129
- #: ../../library/symtable.rst:110
131
+ #: ../../library/symtable.rst:111
130
132
msgid "Return a tuple containing names of free variables in this function."
131
133
msgstr ""
132
134
133
- #: ../../library/symtable.rst:115
135
+ #: ../../library/symtable.rst:116
134
136
msgid "A namespace of a class. This class inherits :class:`SymbolTable`."
135
137
msgstr ""
136
138
137
- #: ../../library/symtable.rst:119
139
+ #: ../../library/symtable.rst:120
138
140
msgid "Return a tuple containing the names of methods declared in the class."
139
141
msgstr ""
140
142
141
- #: ../../library/symtable.rst:124
143
+ #: ../../library/symtable.rst:125
142
144
msgid ""
143
145
"An entry in a :class:`SymbolTable` corresponding to an identifier in the "
144
146
"source. The constructor is not public."
145
147
msgstr ""
146
148
147
- #: ../../library/symtable.rst:129
149
+ #: ../../library/symtable.rst:130
148
150
msgid "Return the symbol's name."
149
151
msgstr ""
150
152
151
- #: ../../library/symtable.rst:133
153
+ #: ../../library/symtable.rst:134
152
154
msgid "Return ``True`` if the symbol is used in its block."
153
155
msgstr ""
154
156
155
- #: ../../library/symtable.rst:137
157
+ #: ../../library/symtable.rst:138
156
158
msgid "Return ``True`` if the symbol is created from an import statement."
157
159
msgstr ""
158
160
159
- #: ../../library/symtable.rst:141
161
+ #: ../../library/symtable.rst:142
160
162
msgid "Return ``True`` if the symbol is a parameter."
161
163
msgstr ""
162
164
163
- #: ../../library/symtable.rst:145
165
+ #: ../../library/symtable.rst:146
164
166
msgid "Return ``True`` if the symbol is global."
165
167
msgstr ""
166
168
167
- #: ../../library/symtable.rst:149
169
+ #: ../../library/symtable.rst:150
168
170
msgid "Return ``True`` if the symbol is nonlocal."
169
171
msgstr ""
170
172
171
- #: ../../library/symtable.rst:153
173
+ #: ../../library/symtable.rst:154
172
174
msgid ""
173
175
"Return ``True`` if the symbol is declared global with a global statement."
174
176
msgstr ""
175
177
176
- #: ../../library/symtable.rst:157
178
+ #: ../../library/symtable.rst:158
177
179
msgid "Return ``True`` if the symbol is local to its block."
178
180
msgstr ""
179
181
180
- #: ../../library/symtable.rst:161
182
+ #: ../../library/symtable.rst:162
181
183
msgid "Return ``True`` if the symbol is annotated."
182
184
msgstr ""
183
185
184
- #: ../../library/symtable.rst:167
186
+ #: ../../library/symtable.rst:168
185
187
msgid ""
186
188
"Return ``True`` if the symbol is referenced in its block, but not assigned "
187
189
"to."
188
190
msgstr ""
189
191
190
- #: ../../library/symtable.rst:172
192
+ #: ../../library/symtable.rst:173
191
193
msgid "Return ``True`` if the symbol is assigned to in its block."
192
194
msgstr ""
193
195
194
- #: ../../library/symtable.rst:176
196
+ #: ../../library/symtable.rst:177
195
197
msgid "Return ``True`` if name binding introduces new namespace."
196
198
msgstr ""
197
199
198
- #: ../../library/symtable.rst:178
200
+ #: ../../library/symtable.rst:179
199
201
msgid ""
200
202
"If the name is used as the target of a function or class statement, this "
201
203
"will be true."
202
204
msgstr ""
203
205
204
- #: ../../library/symtable.rst:181
206
+ #: ../../library/symtable.rst:182
205
207
msgid "For example::"
206
208
msgstr ""
207
209
"舉例來說:\n"
208
210
"\n"
209
211
"::"
210
212
211
- #: ../../library/symtable.rst:187
213
+ #: ../../library/symtable.rst:188
212
214
msgid ""
213
215
"Note that a single name can be bound to multiple objects. If the result is "
214
216
"``True``, the name may also be bound to other objects, like an int or list, "
215
217
"that does not introduce a new namespace."
216
218
msgstr ""
217
219
218
- #: ../../library/symtable.rst:193
220
+ #: ../../library/symtable.rst:194
219
221
msgid "Return a list of namespaces bound to this name."
220
222
msgstr ""
221
223
222
- #: ../../library/symtable.rst:197
224
+ #: ../../library/symtable.rst:198
223
225
msgid ""
224
226
"Return the namespace bound to this name. If more than one namespace is "
225
227
"bound, :exc:`ValueError` is raised."
0 commit comments