1
1
# -*- coding: utf-8 -*-
2
- # Autogenerated by Sphinx on Fri Aug 5 15:44:44 2022
2
+ # Autogenerated by Sphinx on Sun Sep 11 20:22:13 2022
3
3
topics = {'assert': 'The "assert" statement\n'
4
4
'**********************\n'
5
5
'\n'
3482
3482
' there is matched against the whole object rather than an '
3483
3483
'attribute.\n'
3484
3484
' For example "int(0|1)" matches the value "0", but not the '
3485
- 'values \n'
3486
- ' "0.0" or "False" .\n'
3485
+ 'value \n'
3486
+ ' "0.0".\n'
3487
3487
'\n'
3488
3488
'In simple terms "CLS(P1, attr=P2)" matches only if the '
3489
3489
'following\n'
8983
8983
' still alive. The list is in definition order. Example:\n'
8984
8984
'\n'
8985
8985
' >>> int.__subclasses__()\n'
8986
- " [<class 'bool'>]\n"
8987
- '\n'
8988
- '-[ Footnotes ]-\n'
8989
- '\n'
8990
- '[1] Additional information on these special methods may be '
8991
- 'found in\n'
8992
- ' the Python Reference Manual (Basic customization).\n'
8993
- '\n'
8994
- '[2] As a consequence, the list "[1, 2]" is considered equal '
8995
- 'to "[1.0,\n'
8996
- ' 2.0]", and similarly for tuples.\n'
8997
- '\n'
8998
- '[3] They must have since the parser can’t tell the type of '
8999
- 'the\n'
9000
- ' operands.\n'
9001
- '\n'
9002
- '[4] Cased characters are those with general category '
9003
- 'property being\n'
9004
- ' one of “Lu” (Letter, uppercase), “Ll” (Letter, '
9005
- 'lowercase), or “Lt”\n'
9006
- ' (Letter, titlecase).\n'
9007
- '\n'
9008
- '[5] To format only a tuple you should therefore provide a '
9009
- 'singleton\n'
9010
- ' tuple whose only element is the tuple to be formatted.\n',
8986
+ " [<class 'bool'>]\n",
9011
8987
'specialnames': 'Special method names\n'
9012
8988
'********************\n'
9013
8989
'\n'
12256
12232
'| Escape Sequence | Meaning | Notes '
12257
12233
'|\n'
12258
12234
'|===================|===================================|=========|\n'
12259
- '| "\\newline" | Backslash and newline ignored '
12260
- '| |\n'
12235
+ '| "\\"<newline> | Backslash and newline ignored | '
12236
+ '(1) |\n'
12261
12237
'+-------------------+-----------------------------------+---------+\n'
12262
12238
'| "\\\\" | Backslash ("\\") '
12263
12239
'| |\n'
@@ -12290,10 +12266,10 @@
12290
12266
'| |\n'
12291
12267
'+-------------------+-----------------------------------+---------+\n'
12292
12268
'| "\\ooo" | Character with octal value *ooo* | '
12293
- '(1,3 ) |\n'
12269
+ '(2,4 ) |\n'
12294
12270
'+-------------------+-----------------------------------+---------+\n'
12295
12271
'| "\\xhh" | Character with hex value *hh* | '
12296
- '(2,3 ) |\n'
12272
+ '(3,4 ) |\n'
12297
12273
'+-------------------+-----------------------------------+---------+\n'
12298
12274
'\n'
12299
12275
'Escape sequences only recognized in string literals are:\n'
@@ -12303,45 +12279,57 @@
12303
12279
'|\n'
12304
12280
'|===================|===================================|=========|\n'
12305
12281
'| "\\N{name}" | Character named *name* in the | '
12306
- '(4 ) |\n'
12282
+ '(5 ) |\n'
12307
12283
'| | Unicode database | '
12308
12284
'|\n'
12309
12285
'+-------------------+-----------------------------------+---------+\n'
12310
12286
'| "\\uxxxx" | Character with 16-bit hex value | '
12311
- '(5 ) |\n'
12287
+ '(6 ) |\n'
12312
12288
'| | *xxxx* | '
12313
12289
'|\n'
12314
12290
'+-------------------+-----------------------------------+---------+\n'
12315
12291
'| "\\Uxxxxxxxx" | Character with 32-bit hex value | '
12316
- '(6 ) |\n'
12292
+ '(7 ) |\n'
12317
12293
'| | *xxxxxxxx* | '
12318
12294
'|\n'
12319
12295
'+-------------------+-----------------------------------+---------+\n'
12320
12296
'\n'
12321
12297
'Notes:\n'
12322
12298
'\n'
12323
- '1. As in Standard C, up to three octal digits are accepted.\n'
12299
+ '1. A backslash can be added at the end of a line to ignore the\n'
12300
+ ' newline:\n'
12301
+ '\n'
12302
+ " >>> 'This string will not include \\\n"
12303
+ " ... backslashes or newline characters.'\n"
12304
+ " 'This string will not include backslashes or newline "
12305
+ "characters.'\n"
12306
+ '\n'
12307
+ ' The same result can be achieved using triple-quoted strings, '
12308
+ 'or\n'
12309
+ ' parentheses and string literal concatenation.\n'
12310
+ '\n'
12311
+ '2. As in Standard C, up to three octal digits are accepted.\n'
12324
12312
'\n'
12325
12313
' Changed in version 3.11: Octal escapes with value larger than\n'
12326
12314
' "0o377" produce a "DeprecationWarning". In a future Python '
12327
12315
'version\n'
12328
12316
' they will be a "SyntaxWarning" and eventually a '
12329
12317
'"SyntaxError".\n'
12330
12318
'\n'
12331
- '2 . Unlike in Standard C, exactly two hex digits are required.\n'
12319
+ '3 . Unlike in Standard C, exactly two hex digits are required.\n'
12332
12320
'\n'
12333
- '3 . In a bytes literal, hexadecimal and octal escapes denote the '
12321
+ '4 . In a bytes literal, hexadecimal and octal escapes denote the '
12334
12322
'byte\n'
12335
12323
' with the given value. In a string literal, these escapes '
12336
12324
'denote a\n'
12337
12325
' Unicode character with the given value.\n'
12338
12326
'\n'
12339
- '4 . Changed in version 3.3: Support for name aliases [1] has been\n'
12327
+ '5 . Changed in version 3.3: Support for name aliases [1] has been\n'
12340
12328
' added.\n'
12341
12329
'\n'
12342
- '5 . Exactly four hex digits are required.\n'
12330
+ '6 . Exactly four hex digits are required.\n'
12343
12331
'\n'
12344
- '6 . Any Unicode character can be encoded this way. Exactly eight '
12332
+ '7 . Any Unicode character can be encoded this way. Exactly eight '
12345
12333
'hex\n'
12346
12334
' digits are required.\n'
12347
12335
'\n'
0 commit comments