|
1 | 1 | # -*- coding: utf-8 -*-
|
2 |
| -# Autogenerated by Sphinx on Wed Jan 17 13:09:41 2024 |
| 2 | +# Autogenerated by Sphinx on Thu Feb 15 14:30:52 2024 |
3 | 3 | # as part of the release process.
|
4 | 4 | topics = {'assert': 'The "assert" statement\n'
|
5 | 5 | '**********************\n'
|
|
722 | 722 | '\n'
|
723 | 723 | 'object.__dir__(self)\n'
|
724 | 724 | '\n'
|
725 |
| - ' Called when "dir()" is called on the object. A ' |
726 |
| - 'sequence must be\n' |
727 |
| - ' returned. "dir()" converts the returned sequence to a ' |
| 725 | + ' Called when "dir()" is called on the object. An ' |
| 726 | + 'iterable must be\n' |
| 727 | + ' returned. "dir()" converts the returned iterable to a ' |
728 | 728 | 'list and\n'
|
729 | 729 | ' sorts it.\n'
|
730 | 730 | '\n'
|
|
751 | 751 | 'returned.\n'
|
752 | 752 | '\n'
|
753 | 753 | 'The "__dir__" function should accept no arguments, and '
|
754 |
| - 'return a\n' |
755 |
| - 'sequence of strings that represents the names accessible ' |
| 754 | + 'return an\n' |
| 755 | + 'iterable of strings that represents the names accessible ' |
756 | 756 | 'on module. If\n'
|
757 | 757 | 'present, this function overrides the standard "dir()" '
|
758 | 758 | 'search on a\n'
|
|
4921 | 4921 | 'and continue running without the debugger using the "continue"\n'
|
4922 | 4922 | 'command.\n'
|
4923 | 4923 | '\n'
|
4924 |
| - 'New in version 3.7: The built-in "breakpoint()", when called ' |
| 4924 | + 'Changed in version 3.7: The built-in "breakpoint()", when called ' |
4925 | 4925 | 'with\n'
|
4926 | 4926 | 'defaults, can be used instead of "import pdb; pdb.set_trace()".\n'
|
4927 | 4927 | '\n'
|
|
4965 | 4965 | 'the\n'
|
4966 | 4966 | 'debugger upon program’s exit.\n'
|
4967 | 4967 | '\n'
|
4968 |
| - 'New in version 3.2: "-c" option is introduced to execute ' |
| 4968 | + 'Changed in version 3.2: Added the "-c" option to execute ' |
4969 | 4969 | 'commands as\n'
|
4970 |
| - 'if given in a ".pdbrc" file, see Debugger Commands.\n' |
| 4970 | + 'if given in a ".pdbrc" file; see Debugger Commands.\n' |
4971 | 4971 | '\n'
|
4972 |
| - 'New in version 3.7: "-m" option is introduced to execute ' |
| 4972 | + 'Changed in version 3.7: Added the "-m" option to execute ' |
4973 | 4973 | 'modules\n'
|
4974 | 4974 | 'similar to the way "python -m" does. As with a script, the '
|
4975 | 4975 | 'debugger\n'
|
|
5115 | 5115 | '\n'
|
5116 | 5116 | ' Raises an auditing event "pdb.Pdb" with no arguments.\n'
|
5117 | 5117 | '\n'
|
5118 |
| - ' New in version 3.1: The *skip* argument.\n' |
| 5118 | + ' Changed in version 3.1: Added the *skip* parameter.\n' |
5119 | 5119 | '\n'
|
5120 |
| - ' New in version 3.2: The *nosigint* argument. Previously, a ' |
5121 |
| - 'SIGINT\n' |
5122 |
| - ' handler was never set by Pdb.\n' |
| 5120 | + ' Changed in version 3.2: Added the *nosigint* parameter. ' |
| 5121 | + 'Previously,\n' |
| 5122 | + ' a SIGINT handler was never set by Pdb.\n' |
5123 | 5123 | '\n'
|
5124 | 5124 | ' Changed in version 3.6: The *readrc* argument.\n'
|
5125 | 5125 | '\n'
|
|
5466 | 5466 | 'differs\n'
|
5467 | 5467 | ' from the current line.\n'
|
5468 | 5468 | '\n'
|
5469 |
| - ' New in version 3.2: The ">>" marker.\n' |
| 5469 | + ' Changed in version 3.2: Added the ">>" marker.\n' |
5470 | 5470 | '\n'
|
5471 | 5471 | 'll | longlist\n'
|
5472 | 5472 | '\n'
|
|
5599 | 5599 | '\n'
|
5600 | 5600 | ' New in version 3.2.\n'
|
5601 | 5601 | '\n'
|
5602 |
| - ' New in version 3.13: "exit()" and "quit()" can be used to ' |
| 5602 | + ' Changed in version 3.13: "exit()" and "quit()" can be used to ' |
5603 | 5603 | 'exit\n'
|
5604 |
| - ' "interact" command.\n' |
| 5604 | + ' the "interact" command.\n' |
5605 | 5605 | '\n'
|
5606 | 5606 | ' Changed in version 3.13: "interact" directs its output to '
|
5607 | 5607 | 'the\n'
|
|
6470 | 6470 | 'originally\n'
|
6471 | 6471 | 'proposed by **PEP 448**.\n'
|
6472 | 6472 | '\n'
|
6473 |
| - 'The trailing comma is required only to create a single tuple ' |
6474 |
| - '(a.k.a. a\n' |
6475 |
| - '*singleton*); it is optional in all other cases. A single ' |
6476 |
| - 'expression\n' |
6477 |
| - 'without a trailing comma doesn’t create a tuple, but rather ' |
6478 |
| - 'yields the\n' |
6479 |
| - 'value of that expression. (To create an empty tuple, use an ' |
6480 |
| - 'empty pair\n' |
6481 |
| - 'of parentheses: "()".)\n', |
| 6473 | + 'A trailing comma is required only to create a one-item tuple, ' |
| 6474 | + 'such as\n' |
| 6475 | + '"1,"; it is optional in all other cases. A single expression ' |
| 6476 | + 'without a\n' |
| 6477 | + 'trailing comma doesn’t create a tuple, but rather yields the ' |
| 6478 | + 'value of\n' |
| 6479 | + 'that expression. (To create an empty tuple, use an empty pair ' |
| 6480 | + 'of\n' |
| 6481 | + 'parentheses: "()".)\n', |
6482 | 6482 | 'floating': 'Floating point literals\n'
|
6483 | 6483 | '***********************\n'
|
6484 | 6484 | '\n'
|
|
10384 | 10384 | '\n'
|
10385 | 10385 | 'object.__dir__(self)\n'
|
10386 | 10386 | '\n'
|
10387 |
| - ' Called when "dir()" is called on the object. A sequence ' |
| 10387 | + ' Called when "dir()" is called on the object. An iterable ' |
10388 | 10388 | 'must be\n'
|
10389 |
| - ' returned. "dir()" converts the returned sequence to a ' |
| 10389 | + ' returned. "dir()" converts the returned iterable to a ' |
10390 | 10390 | 'list and\n'
|
10391 | 10391 | ' sorts it.\n'
|
10392 | 10392 | '\n'
|
|
10413 | 10413 | 'returned.\n'
|
10414 | 10414 | '\n'
|
10415 | 10415 | 'The "__dir__" function should accept no arguments, and '
|
10416 |
| - 'return a\n' |
10417 |
| - 'sequence of strings that represents the names accessible on ' |
| 10416 | + 'return an\n' |
| 10417 | + 'iterable of strings that represents the names accessible on ' |
10418 | 10418 | 'module. If\n'
|
10419 | 10419 | 'present, this function overrides the standard "dir()" search '
|
10420 | 10420 | 'on a\n'
|
|
14543 | 14543 | 'name |\n'
|
14544 | 14544 | '+----------------------------------------------------+----------------------------------------------------+\n'
|
14545 | 14545 | '| codeobject.co_qualname | The fully '
|
14546 |
| - 'qualified function name |\n' |
| 14546 | + 'qualified function name New in version |\n' |
| 14547 | + '| | ' |
| 14548 | + '3.11. |\n' |
14547 | 14549 | '+----------------------------------------------------+----------------------------------------------------+\n'
|
14548 | 14550 | '| codeobject.co_argcount | The total '
|
14549 | 14551 | 'number of positional *parameters* |\n'
|
|
15008 | 15010 | 'around another object that alters the way in which that object is\n'
|
15009 | 15011 | 'retrieved from classes and class instances. The behaviour of class\n'
|
15010 | 15012 | 'method objects upon such retrieval is described above, under '
|
15011 |
| - '“User-\n' |
15012 |
| - 'defined methods”. Class method objects are created by the built-in\n' |
| 15013 | + '“instance\n' |
| 15014 | + 'methods”. Class method objects are created by the built-in\n' |
15013 | 15015 | '"classmethod()" constructor.\n',
|
15014 | 15016 | 'typesfunctions': 'Functions\n'
|
15015 | 15017 | '*********\n'
|
|
0 commit comments