Skip to content

Commit

Permalink
Python 3.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ambv committed Jun 28, 2021
1 parent 17b9167 commit db3ff76
Show file tree
Hide file tree
Showing 59 changed files with 581 additions and 132 deletions.
4 changes: 2 additions & 2 deletions Include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
/*--start constants--*/
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 9
#define PY_MICRO_VERSION 5
#define PY_MICRO_VERSION 6
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
#define PY_RELEASE_SERIAL 0

/* Version as a string */
#define PY_VERSION "3.9.5+"
#define PY_VERSION "3.9.6"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
38 changes: 21 additions & 17 deletions Lib/pydoc_data/topics.py
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -5321,19 +5321,19 @@
'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'
Expand Down Expand Up @@ -5446,8 +5446,12 @@
'+-----------+------------------------------------------------------------+\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\'", '
Expand Down Expand Up @@ -6283,7 +6287,7 @@
' | "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'
Expand Down
Loading

0 comments on commit db3ff76

Please sign in to comment.