|
1 | 1 | # -*- coding: utf-8 -*-
|
2 |
| -# Autogenerated by Sphinx on Tue Nov 19 11:42:25 2019 |
| 2 | +# Autogenerated by Sphinx on Wed Dec 18 22:05:39 2019 |
3 | 3 | topics = {'assert': 'The "assert" statement\n'
|
4 | 4 | '**********************\n'
|
5 | 5 | '\n'
|
|
862 | 862 | 'created. The\n'
|
863 | 863 | ' descriptor has been assigned to *name*.\n'
|
864 | 864 | '\n'
|
| 865 | + ' Note: "__set_name__()" is only called implicitly as ' |
| 866 | + 'part of the\n' |
| 867 | + ' "type" constructor, so it will need to be called ' |
| 868 | + 'explicitly with\n' |
| 869 | + ' the appropriate parameters when a descriptor is ' |
| 870 | + 'added to a class\n' |
| 871 | + ' after initial creation:\n' |
| 872 | + '\n' |
| 873 | + ' class A:\n' |
| 874 | + ' pass\n' |
| 875 | + ' descr = custom_descriptor()\n' |
| 876 | + ' A.attr = descr\n' |
| 877 | + " descr.__set_name__(A, 'attr')\n" |
| 878 | + '\n' |
| 879 | + ' See Creating the class object for more details.\n' |
| 880 | + '\n' |
865 | 881 | ' New in version 3.6.\n'
|
866 | 882 | '\n'
|
867 | 883 | 'The attribute "__objclass__" is interpreted by the '
|
|
4224 | 4240 | ' Quit from the debugger. The program being executed is '
|
4225 | 4241 | 'aborted.\n'
|
4226 | 4242 | '\n'
|
| 4243 | + 'debug code\n' |
| 4244 | + '\n' |
| 4245 | + ' Enter a recursive debugger that steps through the code ' |
| 4246 | + 'argument\n' |
| 4247 | + ' (which is an arbitrary expression or statement to be executed ' |
| 4248 | + 'in\n' |
| 4249 | + ' the current environment).\n' |
| 4250 | + '\n' |
| 4251 | + 'retval\n' |
| 4252 | + 'Print the return value for the last return of a function.\n' |
| 4253 | + '\n' |
4227 | 4254 | '-[ Footnotes ]-\n'
|
4228 | 4255 | '\n'
|
4229 | 4256 | '[1] Whether a frame is considered to originate in a certain '
|
|
8525 | 8552 | 'The\n'
|
8526 | 8553 | ' descriptor has been assigned to *name*.\n'
|
8527 | 8554 | '\n'
|
| 8555 | + ' Note: "__set_name__()" is only called implicitly as part ' |
| 8556 | + 'of the\n' |
| 8557 | + ' "type" constructor, so it will need to be called ' |
| 8558 | + 'explicitly with\n' |
| 8559 | + ' the appropriate parameters when a descriptor is added ' |
| 8560 | + 'to a class\n' |
| 8561 | + ' after initial creation:\n' |
| 8562 | + '\n' |
| 8563 | + ' class A:\n' |
| 8564 | + ' pass\n' |
| 8565 | + ' descr = custom_descriptor()\n' |
| 8566 | + ' A.attr = descr\n' |
| 8567 | + " descr.__set_name__(A, 'attr')\n" |
| 8568 | + '\n' |
| 8569 | + ' See Creating the class object for more details.\n' |
| 8570 | + '\n' |
8528 | 8571 | ' New in version 3.6.\n'
|
8529 | 8572 | '\n'
|
8530 | 8573 | 'The attribute "__objclass__" is interpreted by the "inspect" '
|
|
11902 | 11945 | ' bytecode offsets to line numbers (for details see the source\n'
|
11903 | 11946 | ' code of the interpreter); "co_stacksize" is the required '
|
11904 | 11947 | 'stack\n'
|
11905 |
| - ' size (including local variables); "co_flags" is an integer\n' |
11906 |
| - ' encoding a number of flags for the interpreter.\n' |
| 11948 | + ' size; "co_flags" is an integer encoding a number of flags ' |
| 11949 | + 'for\n' |
| 11950 | + ' the interpreter.\n' |
11907 | 11951 | '\n'
|
11908 | 11952 | ' The following flag bits are defined for "co_flags": bit '
|
11909 | 11953 | '"0x04"\n'
|
|
0 commit comments