Python 3.9.6

This commit is contained in:
Łukasz Langa 2021-06-28 10:26:18 +02:00
parent 17b916737b
commit db3ff76da1
No known key found for this signature in database
GPG key ID: B26995E310250568
59 changed files with 581 additions and 132 deletions

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Mon May 3 16:52:46 2021
# Autogenerated by Sphinx on Mon Jun 28 10:13:28 2021
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
@ -5321,19 +5321,19 @@ topics = {'assert': 'The "assert" statement\n'
'complex\n'
'types. For integers, when binary, octal, or hexadecimal '
'output is\n'
'used, this option adds the prefix respective "\'0b\'", '
'"\'0o\'", or "\'0x\'"\n'
'to the output value. For float and complex the alternate '
'form causes\n'
'the result of the conversion to always contain a '
'decimal-point\n'
'character, even if no digits follow it. Normally, a '
'decimal-point\n'
'character appears in the result of these conversions only '
'if a digit\n'
'follows it. In addition, for "\'g\'" and "\'G\'" '
'conversions, trailing\n'
'zeros are not removed from the result.\n'
'used, this option adds the respective prefix "\'0b\'", '
'"\'0o\'", "\'0x\'",\n'
'or "\'0X\'" to the output value. For float and complex the '
'alternate\n'
'form causes the result of the conversion to always contain '
'a decimal-\n'
'point character, even if no digits follow it. Normally, a '
'decimal-\n'
'point character appears in the result of these conversions '
'only if a\n'
'digit follows it. In addition, for "\'g\'" and "\'G\'" '
'conversions,\n'
'trailing zeros are not removed from the result.\n'
'\n'
'The "\',\'" option signals the use of a comma for a '
'thousands separator.\n'
@ -5446,8 +5446,12 @@ topics = {'assert': 'The "assert" statement\n'
'+-----------+------------------------------------------------------------+\n'
' | "\'X\'" | Hex format. Outputs the number in base '
'16, using upper- |\n'
' | | case letters for the digits above '
'9. |\n'
' | | case letters for the digits above 9. In '
'case "\'#\'" is |\n'
' | | specified, the prefix "\'0x\'" will be '
'upper-cased to "\'0X\'" |\n'
' | | as '
'well. |\n'
' '
'+-----------+------------------------------------------------------------+\n'
' | "\'n\'" | Number. This is the same as "\'d\'", '
@ -6283,7 +6287,7 @@ topics = {'assert': 'The "assert" statement\n'
' | "from" relative_module "import" "(" '
'identifier ["as" identifier]\n'
' ("," identifier ["as" identifier])* [","] ")"\n'
' | "from" module "import" "*"\n'
' | "from" relative_module "import" "*"\n'
' module ::= (identifier ".")* identifier\n'
' relative_module ::= "."* module | "."+\n'
'\n'