Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0f82175

Browse filesBrowse files
authored
Merge branch '3.10' into glossary
2 parents ffc4406 + efe568d commit 0f82175
Copy full SHA for 0f82175

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

116 files changed

+4386
-3810
lines changed

‎c-api/allocation.po

Copy file name to clipboardExpand all lines: c-api/allocation.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2018-06-26 18:54+0800\n"
10+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1111
"PO-Revision-Date: 2016-01-31 07:06+0000\n"
1212
"Last-Translator: Liang-Bo Wang <me@liang2.tw>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -24,7 +24,7 @@ msgstr ""
2424

2525
#: ../../c-api/allocation.rst:17
2626
msgid ""
27-
"Initialize a newly-allocated object *op* with its type and initial "
27+
"Initialize a newly allocated object *op* with its type and initial "
2828
"reference. Returns the initialized object. If *type* indicates that the "
2929
"object participates in the cyclic garbage detector, it is added to the "
3030
"detector's set of observed objects. Other fields of the object are not "

‎c-api/datetime.po

Copy file name to clipboardExpand all lines: c-api/datetime.po
+25-21Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgid ""
99
msgstr ""
1010
"Project-Id-Version: Python 3.10\n"
1111
"Report-Msgid-Bugs-To: \n"
12-
"POT-Creation-Date: 2021-10-26 16:47+0000\n"
12+
"POT-Creation-Date: 2022-07-15 00:18+0000\n"
1313
"PO-Revision-Date: 2017-09-22 18:26+0000\n"
1414
"Last-Translator: Liang-Bo Wang <me@liang2.tw>\n"
1515
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -161,102 +161,106 @@ msgid ""
161161
"for :class:`datetime.timedelta` objects."
162162
msgstr ""
163163

164-
#: ../../c-api/datetime.rst:137
164+
#: ../../c-api/datetime.rst:138
165165
msgid ""
166166
"Return a :class:`datetime.timezone` object with an unnamed fixed offset "
167167
"represented by the *offset* argument."
168168
msgstr ""
169169

170-
#: ../../c-api/datetime.rst:144
170+
#: ../../c-api/datetime.rst:146
171171
msgid ""
172172
"Return a :class:`datetime.timezone` object with a fixed offset represented "
173173
"by the *offset* argument and with tzname *name*."
174174
msgstr ""
175175

176-
#: ../../c-api/datetime.rst:150
176+
#: ../../c-api/datetime.rst:152
177177
msgid ""
178178
"Macros to extract fields from date objects. The argument must be an "
179179
"instance of :c:data:`PyDateTime_Date`, including subclasses (such as :c:data:"
180180
"`PyDateTime_DateTime`). The argument must not be ``NULL``, and the type is "
181181
"not checked:"
182182
msgstr ""
183183

184-
#: ../../c-api/datetime.rst:157
184+
#: ../../c-api/datetime.rst:159
185185
msgid "Return the year, as a positive int."
186186
msgstr "回傳年份,為正整數。"
187187

188-
#: ../../c-api/datetime.rst:162
188+
#: ../../c-api/datetime.rst:164
189189
msgid "Return the month, as an int from 1 through 12."
190190
msgstr "回傳月份,為正整數,從 1 到 12。"
191191

192-
#: ../../c-api/datetime.rst:167
192+
#: ../../c-api/datetime.rst:169
193193
msgid "Return the day, as an int from 1 through 31."
194194
msgstr "回傳日期,為正整數,從 1 到 31。"
195195

196-
#: ../../c-api/datetime.rst:170
196+
#: ../../c-api/datetime.rst:172
197197
msgid ""
198198
"Macros to extract fields from datetime objects. The argument must be an "
199199
"instance of :c:data:`PyDateTime_DateTime`, including subclasses. The "
200200
"argument must not be ``NULL``, and the type is not checked:"
201201
msgstr ""
202202

203-
#: ../../c-api/datetime.rst:176 ../../c-api/datetime.rst:205
203+
#: ../../c-api/datetime.rst:178 ../../c-api/datetime.rst:216
204204
msgid "Return the hour, as an int from 0 through 23."
205205
msgstr "回傳小時,為正整數,從 0 到 23。"
206206

207-
#: ../../c-api/datetime.rst:181 ../../c-api/datetime.rst:210
207+
#: ../../c-api/datetime.rst:183 ../../c-api/datetime.rst:221
208208
msgid "Return the minute, as an int from 0 through 59."
209209
msgstr "回傳分鐘,為正整數,從 0 到 59。"
210210

211-
#: ../../c-api/datetime.rst:186 ../../c-api/datetime.rst:215
211+
#: ../../c-api/datetime.rst:188 ../../c-api/datetime.rst:226
212212
msgid "Return the second, as an int from 0 through 59."
213213
msgstr "回傳秒,為正整數,從0 到59。"
214214

215-
#: ../../c-api/datetime.rst:191 ../../c-api/datetime.rst:220
215+
#: ../../c-api/datetime.rst:193 ../../c-api/datetime.rst:231
216216
msgid "Return the microsecond, as an int from 0 through 999999."
217217
msgstr "回傳微秒,為正整數,從 0 到 999999。"
218218

219-
#: ../../c-api/datetime.rst:195 ../../c-api/datetime.rst:224
219+
#: ../../c-api/datetime.rst:198 ../../c-api/datetime.rst:236
220+
msgid "Return the fold, as an int from 0 through 1."
221+
msgstr "回傳 fold,為 0 或 1 的正整數。"
222+
223+
#: ../../c-api/datetime.rst:205 ../../c-api/datetime.rst:243
220224
msgid "Return the tzinfo (which may be ``None``)."
221225
msgstr ""
222226

223-
#: ../../c-api/datetime.rst:199
227+
#: ../../c-api/datetime.rst:210
224228
msgid ""
225229
"Macros to extract fields from time objects. The argument must be an "
226230
"instance of :c:data:`PyDateTime_Time`, including subclasses. The argument "
227231
"must not be ``NULL``, and the type is not checked:"
228232
msgstr ""
229233

230-
#: ../../c-api/datetime.rst:229
234+
#: ../../c-api/datetime.rst:248
231235
msgid ""
232236
"Macros to extract fields from time delta objects. The argument must be an "
233237
"instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument "
234238
"must not be ``NULL``, and the type is not checked:"
235239
msgstr ""
236240

237-
#: ../../c-api/datetime.rst:235
241+
#: ../../c-api/datetime.rst:254
238242
msgid "Return the number of days, as an int from -999999999 to 999999999."
239243
msgstr ""
240244

241-
#: ../../c-api/datetime.rst:242
245+
#: ../../c-api/datetime.rst:261
242246
msgid "Return the number of seconds, as an int from 0 through 86399."
243247
msgstr ""
244248

245-
#: ../../c-api/datetime.rst:249
249+
#: ../../c-api/datetime.rst:268
246250
msgid "Return the number of microseconds, as an int from 0 through 999999."
247251
msgstr ""
248252

249-
#: ../../c-api/datetime.rst:254
253+
#: ../../c-api/datetime.rst:273
250254
msgid "Macros for the convenience of modules implementing the DB API:"
251255
msgstr ""
252256

253-
#: ../../c-api/datetime.rst:258
257+
#: ../../c-api/datetime.rst:277
254258
msgid ""
255259
"Create and return a new :class:`datetime.datetime` object given an argument "
256260
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
257261
msgstr ""
258262

259-
#: ../../c-api/datetime.rst:264
263+
#: ../../c-api/datetime.rst:283
260264
msgid ""
261265
"Create and return a new :class:`datetime.date` object given an argument "
262266
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."

‎c-api/intro.po

Copy file name to clipboardExpand all lines: c-api/intro.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2022-05-21 17:35+0000\n"
10+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1111
"PO-Revision-Date: 2018-05-23 14:06+0000\n"
1212
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -705,7 +705,7 @@ msgid ""
705705
"`Misc/SpecialBuilds.txt` in the Python source distribution. Builds are "
706706
"available that support tracing of reference counts, debugging the memory "
707707
"allocator, or low-level profiling of the main interpreter loop. Only the "
708-
"most frequently-used builds will be described in the remainder of this "
708+
"most frequently used builds will be described in the remainder of this "
709709
"section."
710710
msgstr ""
711711

‎c-api/memory.po

Copy file name to clipboardExpand all lines: c-api/memory.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-04-08 00:15+0000\n"
11+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1212
"PO-Revision-Date: 2018-05-23 14:06+0000\n"
1313
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -87,7 +87,7 @@ msgid ""
8787
"extended with new object types written in C. Another reason for using the "
8888
"Python heap is the desire to *inform* the Python memory manager about the "
8989
"memory needs of the extension module. Even when the requested memory is used "
90-
"exclusively for internal, highly-specific purposes, delegating all memory "
90+
"exclusively for internal, highly specific purposes, delegating all memory "
9191
"requests to the Python memory manager causes the interpreter to have a more "
9292
"accurate image of its memory footprint as a whole. Consequently, under "
9393
"certain circumstances, the Python memory manager may or may not trigger "

‎c-api/typeobj.po

Copy file name to clipboardExpand all lines: c-api/typeobj.po
+18-18Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2022-06-11 00:15+0000\n"
10+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1111
"PO-Revision-Date: 2018-05-23 14:33+0000\n"
1212
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -1125,7 +1125,7 @@ msgstr ":c:type:`releasebufferproc`"
11251125

11261126
#: ../../c-api/typeobj.rst:460
11271127
msgid "See :ref:`slot-typedefs` below for more detail."
1128-
msgstr "更多細節請見下方的 :ref:`slot-typedefs`\\ 。"
1128+
msgstr "更多細節請見下方的 :ref:`slot-typedefs`。"
11291129

11301130
#: ../../c-api/typeobj.rst:464
11311131
msgid "PyTypeObject Definition"
@@ -1241,7 +1241,7 @@ msgid ""
12411241
"``PyObject_HEAD_INIT`` macro. For :ref:`statically allocated objects "
12421242
"<static-types>`, these fields always remain ``NULL``. For :ref:`dynamically "
12431243
"allocated objects <heap-types>`, these two fields are used to link the "
1244-
"object into a doubly-linked list of *all* live objects on the heap."
1244+
"object into a doubly linked list of *all* live objects on the heap."
12451245
msgstr ""
12461246

12471247
#: ../../c-api/typeobj.rst:534
@@ -3318,19 +3318,19 @@ msgstr ""
33183318

33193319
#: ../../c-api/typeobj.rst:2487
33203320
msgid "See :c:member:`~PyTypeObject.tp_free`."
3321-
msgstr "請見 :c:member:`~PyTypeObject.tp_free`\\ 。"
3321+
msgstr "請見 :c:member:`~PyTypeObject.tp_free`。"
33223322

33233323
#: ../../c-api/typeobj.rst:2491
33243324
msgid "See :c:member:`~PyTypeObject.tp_new`."
3325-
msgstr "請見 :c:member:`~PyTypeObject.tp_new`\\ 。"
3325+
msgstr "請見 :c:member:`~PyTypeObject.tp_new`。"
33263326

33273327
#: ../../c-api/typeobj.rst:2495
33283328
msgid "See :c:member:`~PyTypeObject.tp_init`."
3329-
msgstr "請見 :c:member:`~PyTypeObject.tp_init`\\ 。"
3329+
msgstr "請見 :c:member:`~PyTypeObject.tp_init`。"
33303330

33313331
#: ../../c-api/typeobj.rst:2499
33323332
msgid "See :c:member:`~PyTypeObject.tp_repr`."
3333-
msgstr "請見 :c:member:`~PyTypeObject.tp_repr`\\ 。"
3333+
msgstr "請見 :c:member:`~PyTypeObject.tp_repr`。"
33343334

33353335
#: ../../c-api/typeobj.rst:2503 ../../c-api/typeobj.rst:2512
33363336
msgid "Return the value of the named attribute for the object."
@@ -3344,39 +3344,39 @@ msgstr ""
33443344

33453345
#: ../../c-api/typeobj.rst:2514
33463346
msgid "See :c:member:`~PyTypeObject.tp_getattro`."
3347-
msgstr "請見 :c:member:`~PyTypeObject.tp_getattro`\\ 。"
3347+
msgstr "請見 :c:member:`~PyTypeObject.tp_getattro`。"
33483348

33493349
#: ../../c-api/typeobj.rst:2521
33503350
msgid "See :c:member:`~PyTypeObject.tp_setattro`."
3351-
msgstr "請見 :c:member:`~PyTypeObject.tp_setattro`\\ 。"
3351+
msgstr "請見 :c:member:`~PyTypeObject.tp_setattro`。"
33523352

33533353
#: ../../c-api/typeobj.rst:2525
3354-
msgid "See :c:member:`~PyTypeObject.tp_descrget`."
3355-
msgstr "請見 :c:member:`~PyTypeObject.tp_descrget`\\ 。"
3354+
msgid "See :c:member:`~PyTypeObject.tp_descr_get`."
3355+
msgstr "請見 :c:member:`~PyTypeObject.tp_descr_get`。"
33563356

33573357
#: ../../c-api/typeobj.rst:2529
3358-
msgid "See :c:member:`~PyTypeObject.tp_descrset`."
3359-
msgstr "請見 :c:member:`~PyTypeObject.tp_descrset`\\ 。"
3358+
msgid "See :c:member:`~PyTypeObject.tp_descr_set`."
3359+
msgstr "請見 :c:member:`~PyTypeObject.tp_descr_set`。"
33603360

33613361
#: ../../c-api/typeobj.rst:2533
33623362
msgid "See :c:member:`~PyTypeObject.tp_hash`."
3363-
msgstr "請見 :c:member:`~PyTypeObject.tp_hash`\\ 。"
3363+
msgstr "請見 :c:member:`~PyTypeObject.tp_hash`。"
33643364

33653365
#: ../../c-api/typeobj.rst:2537
33663366
msgid "See :c:member:`~PyTypeObject.tp_richcompare`."
3367-
msgstr "請見 :c:member:`~PyTypeObject.tp_richcompare`\\ 。"
3367+
msgstr "請見 :c:member:`~PyTypeObject.tp_richcompare`。"
33683368

33693369
#: ../../c-api/typeobj.rst:2541
33703370
msgid "See :c:member:`~PyTypeObject.tp_iter`."
3371-
msgstr "請見 :c:member:`~PyTypeObject.tp_iter`\\ 。"
3371+
msgstr "請見 :c:member:`~PyTypeObject.tp_iter`。"
33723372

33733373
#: ../../c-api/typeobj.rst:2545
33743374
msgid "See :c:member:`~PyTypeObject.tp_iternext`."
3375-
msgstr "請見 :c:member:`~PyTypeObject.tp_iternext`\\ 。"
3375+
msgstr "請見 :c:member:`~PyTypeObject.tp_iternext`。"
33763376

33773377
#: ../../c-api/typeobj.rst:2559
33783378
msgid "See :c:member:`~PyAsyncMethods.am_send`."
3379-
msgstr "請見 :c:member:`~PyAsyncMethods.am_send`\\ 。"
3379+
msgstr "請見 :c:member:`~PyAsyncMethods.am_send`。"
33803380

33813381
#: ../../c-api/typeobj.rst:2575
33823382
msgid "Examples"

‎c-api/weakref.po

Copy file name to clipboardExpand all lines: c-api/weakref.po
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2021-10-26 16:47+0000\n"
11+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1212
"PO-Revision-Date: 2017-09-22 18:26+0000\n"
1313
"Last-Translator: Leon H.\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -54,7 +54,7 @@ msgid ""
5454
"a callable object that receives notification when *ob* is garbage collected; "
5555
"it should accept a single parameter, which will be the weak reference object "
5656
"itself. *callback* may also be ``None`` or ``NULL``. If *ob* is not a "
57-
"weakly-referencable object, or if *callback* is not callable, ``None``, or "
57+
"weakly referencable object, or if *callback* is not callable, ``None``, or "
5858
"``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
5959
msgstr ""
6060

@@ -66,7 +66,7 @@ msgid ""
6666
"can be a callable object that receives notification when *ob* is garbage "
6767
"collected; it should accept a single parameter, which will be the weak "
6868
"reference object itself. *callback* may also be ``None`` or ``NULL``. If "
69-
"*ob* is not a weakly-referencable object, or if *callback* is not callable, "
69+
"*ob* is not a weakly referencable object, or if *callback* is not callable, "
7070
"``None``, or ``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
7171
msgstr ""
7272

‎distutils/apiref.po

Copy file name to clipboardExpand all lines: distutils/apiref.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2021-10-26 16:47+0000\n"
11+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1212
"PO-Revision-Date: 2018-05-23 14:33+0000\n"
1313
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -1665,7 +1665,7 @@ msgstr ""
16651665

16661666
#: ../../distutils/apiref.rst:1201
16671667
msgid ""
1668-
"Note that this is not a fully-fledged string interpolation function. A valid "
1668+
"Note that this is not a full-fledged string interpolation function. A valid "
16691669
"``$variable`` can consist only of upper and lower case letters, numbers and "
16701670
"an underscore. No { } or ( ) style quoting is available."
16711671
msgstr ""

‎extending/building.po

Copy file name to clipboardExpand all lines: extending/building.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2020-06-20 18:08+0800\n"
10+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1111
"PO-Revision-Date: 2018-05-23 14:09+0000\n"
1212
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -42,7 +42,7 @@ msgstr ""
4242

4343
#: ../../extending/building.rst:20
4444
msgid ""
45-
"It returns either a fully-initialized module, or a :c:type:`PyModuleDef` "
45+
"It returns either a fully initialized module, or a :c:type:`PyModuleDef` "
4646
"instance. See :ref:`initializing-modules` for details."
4747
msgstr ""
4848

‎extending/newtypes.po

Copy file name to clipboardExpand all lines: extending/newtypes.po
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2021-11-03 13:29+0000\n"
11+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1212
"PO-Revision-Date: 2018-05-23 14:34+0000\n"
1313
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -160,7 +160,7 @@ msgstr ""
160160
msgid ""
161161
"If no :c:member:`~PyTypeObject.tp_repr` handler is specified, the "
162162
"interpreter will supply a representation that uses the type's :c:member:"
163-
"`~PyTypeObject.tp_name` and a uniquely-identifying value for the object."
163+
"`~PyTypeObject.tp_name` and a uniquely identifying value for the object."
164164
msgstr ""
165165

166166
#: ../../extending/newtypes.rst:181
@@ -595,7 +595,7 @@ msgid ""
595595
msgstr ""
596596

597597
#: ../../extending/newtypes.rst:592
598-
msgid "And the corresponding member in the statically-declared type object::"
598+
msgid "And the corresponding member in the statically declared type object::"
599599
msgstr ""
600600

601601
#: ../../extending/newtypes.rst:600

‎faq/design.po

Copy file name to clipboardExpand all lines: faq/design.po
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-06-01 05:12+0000\n"
11+
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
1212
"PO-Revision-Date: 2018-05-23 14:35+0000\n"
1313
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -413,7 +413,7 @@ msgstr ""
413413
msgid ""
414414
"Functions are already first class objects in Python, and can be declared in "
415415
"a local scope. Therefore the only advantage of using a lambda instead of a "
416-
"locally-defined function is that you don't need to invent a name for the "
416+
"locally defined function is that you don't need to invent a name for the "
417417
"function -- but that's just a local variable to which the function object "
418418
"(which is exactly the same type of object that a lambda expression yields) "
419419
"is assigned!"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.