|
1 | 1 | # -*- coding: utf-8 -*- |
2 | | -# Autogenerated by Sphinx on Tue Sep 19 00:59:47 2017 |
| 2 | +# Autogenerated by Sphinx on Mon Oct 16 23:39:41 2017 |
3 | 3 | topics = {'assert': 'The "assert" statement\n' |
4 | 4 | '**********************\n' |
5 | 5 | '\n' |
|
936 | 936 | 'about\n' |
937 | 937 | 'class and instance attributes applies as for regular ' |
938 | 938 | 'assignments.\n', |
| 939 | + 'await': 'Await expression\n' |
| 940 | + '****************\n' |
| 941 | + '\n' |
| 942 | + 'Suspend the execution of *coroutine* on an *awaitable* object. Can\n' |
| 943 | + 'only be used inside a *coroutine function*.\n' |
| 944 | + '\n' |
| 945 | + ' await_expr ::= "await" primary\n' |
| 946 | + '\n' |
| 947 | + 'New in version 3.5.\n', |
939 | 948 | 'binary': 'Binary arithmetic operations\n' |
940 | 949 | '****************************\n' |
941 | 950 | '\n' |
|
3408 | 3417 | 'appears\n' |
3409 | 3418 | ' as soon as the function is entered.\n' |
3410 | 3419 | '\n' |
3411 | | - 'pdb.set_trace()\n' |
| 3420 | + 'pdb.set_trace(*, header=None)\n' |
3412 | 3421 | '\n' |
3413 | 3422 | ' Enter the debugger at the calling stack frame. This is ' |
3414 | 3423 | 'useful to\n' |
3415 | 3424 | ' hard-code a breakpoint at a given point in a program, even if ' |
3416 | 3425 | 'the\n' |
3417 | 3426 | ' code is not otherwise being debugged (e.g. when an assertion\n' |
3418 | | - ' fails).\n' |
| 3427 | + ' fails). If given, "header" is printed to the console just ' |
| 3428 | + 'before\n' |
| 3429 | + ' debugging begins.\n' |
| 3430 | + '\n' |
| 3431 | + ' New in version 3.7: The keyword-only argument "header".\n' |
3419 | 3432 | '\n' |
3420 | 3433 | 'pdb.post_mortem(traceback=None)\n' |
3421 | 3434 | '\n' |
|
4511 | 4524 | ' 3.14 10. .001 1e100 3.14e-10 0e0 ' |
4512 | 4525 | '3.14_15_93\n' |
4513 | 4526 | '\n' |
4514 | | - 'Note that numeric literals do not include a sign; a phrase like ' |
4515 | | - '"-1"\n' |
4516 | | - 'is actually an expression composed of the unary operator "-" and ' |
4517 | | - 'the\n' |
4518 | | - 'literal "1".\n' |
4519 | | - '\n' |
4520 | 4527 | 'Changed in version 3.6: Underscores are now allowed for ' |
4521 | 4528 | 'grouping\n' |
4522 | 4529 | 'purposes in literals.\n', |
|
5505 | 5512 | '\n' |
5506 | 5513 | '**CPython implementation detail:** The current implementation does ' |
5507 | 5514 | 'not\n' |
5508 | | - 'enforce some of these restriction, but programs should not abuse ' |
| 5515 | + 'enforce some of these restrictions, but programs should not abuse ' |
5509 | 5516 | 'this\n' |
5510 | 5517 | 'freedom, as future implementations may enforce them or silently ' |
5511 | 5518 | 'change\n' |
|
10113 | 10120 | 'or\n' |
10114 | 10121 | 'greater must be expressed with escapes.\n' |
10115 | 10122 | '\n' |
10116 | | - 'As of Python 3.3 it is possible again to prefix string literals ' |
10117 | | - 'with a\n' |
10118 | | - '"u" prefix to simplify maintenance of dual 2.x and 3.x ' |
10119 | | - 'codebases.\n' |
10120 | | - '\n' |
10121 | 10123 | 'Both string and bytes literals may optionally be prefixed with a\n' |
10122 | 10124 | 'letter "\'r\'" or "\'R\'"; such strings are called *raw strings* ' |
10123 | 10125 | 'and treat\n' |
|
0 commit comments