|
1 | 1 | # -*- coding: utf-8 -*-
|
2 |
| -# Autogenerated by Sphinx on Fri Oct 13 10:51:21 2023 |
| 2 | +# Autogenerated by Sphinx on Wed Nov 22 11:44:32 2023 |
3 | 3 | # as part of the release process.
|
4 | 4 | topics = {'assert': 'The "assert" statement\n'
|
5 | 5 | '**********************\n'
|
|
5574 | 5574 | ' Create an alias called *name* that executes *command*. The\n'
|
5575 | 5575 | ' *command* must *not* be enclosed in quotes. Replaceable '
|
5576 | 5576 | 'parameters\n'
|
5577 |
| - ' can be indicated by "%1", "%2", and so on, while "%*" is ' |
| 5577 | + ' can be indicated by "%1", "%2", … and "%9", while "%*" is ' |
5578 | 5578 | 'replaced\n'
|
5579 | 5579 | ' by all the parameters. If *command* is omitted, the current '
|
5580 | 5580 | 'alias\n'
|
@@ -14650,10 +14650,16 @@
|
14650 | 14650 | ' objects (for example when catching an exception and storing its\n'
|
14651 | 14651 | ' traceback for later use).\n'
|
14652 | 14652 | '\n'
|
14653 |
| - ' "RuntimeError" is raised if the frame is currently executing.\n' |
| 14653 | + ' "RuntimeError" is raised if the frame is currently executing or\n' |
| 14654 | + ' suspended.\n' |
14654 | 14655 | '\n'
|
14655 | 14656 | ' New in version 3.4.\n'
|
14656 | 14657 | '\n'
|
| 14658 | + ' Changed in version 3.13: Attempting to clear a suspended frame\n' |
| 14659 | + ' raises "RuntimeError" (as has always been the case for ' |
| 14660 | + 'executing\n' |
| 14661 | + ' frames).\n' |
| 14662 | + '\n' |
14657 | 14663 | '\n'
|
14658 | 14664 | 'Traceback objects\n'
|
14659 | 14665 | '-----------------\n'
|
@@ -15216,21 +15222,23 @@
|
15216 | 15222 | '\n'
|
15217 | 15223 | 'Keys views are set-like since their entries are unique and '
|
15218 | 15224 | '*hashable*.\n'
|
15219 |
| - 'If all values are hashable, so that "(key, value)" pairs are ' |
15220 |
| - 'unique\n' |
15221 |
| - 'and hashable, then the items view is also set-like. (Values ' |
15222 |
| - 'views are\n' |
15223 |
| - 'not treated as set-like since the entries are generally not ' |
15224 |
| - 'unique.)\n' |
15225 |
| - 'For set-like views, all of the operations defined for the ' |
15226 |
| - 'abstract\n' |
15227 |
| - 'base class "collections.abc.Set" are available (for example, ' |
15228 |
| - '"==",\n' |
15229 |
| - '"<", or "^"). While using set operators, set-like views ' |
15230 |
| - 'accept any\n' |
15231 |
| - 'iterable as the other operand, unlike sets which only accept ' |
15232 |
| - 'sets as\n' |
15233 |
| - 'the input.\n' |
| 15225 | + 'Items views also have set-like operations since the (key, ' |
| 15226 | + 'value) pairs\n' |
| 15227 | + 'are unique and the keys are hashable. If all values in an ' |
| 15228 | + 'items view\n' |
| 15229 | + 'are hashable as well, then the items view can interoperate ' |
| 15230 | + 'with other\n' |
| 15231 | + 'sets. (Values views are not treated as set-like since the ' |
| 15232 | + 'entries are\n' |
| 15233 | + 'generally not unique.) For set-like views, all of the ' |
| 15234 | + 'operations\n' |
| 15235 | + 'defined for the abstract base class "collections.abc.Set" ' |
| 15236 | + 'are\n' |
| 15237 | + 'available (for example, "==", "<", or "^"). While using ' |
| 15238 | + 'set\n' |
| 15239 | + 'operators, set-like views accept any iterable as the other ' |
| 15240 | + 'operand,\n' |
| 15241 | + 'unlike sets which only accept sets as the input.\n' |
15234 | 15242 | '\n'
|
15235 | 15243 | 'An example of dictionary view usage:\n'
|
15236 | 15244 | '\n'
|
|
0 commit comments