Skip to content

Commit db3ff76

Browse files
committed
Python 3.9.6
1 parent 17b9167 commit db3ff76

File tree

59 files changed

+581
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+581
-132
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 9
21-
#define PY_MICRO_VERSION 5
21+
#define PY_MICRO_VERSION 6
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
2323
#define PY_RELEASE_SERIAL 0
2424

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

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Lib/pydoc_data/topics.py

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Mon May 3 16:52:46 2021
2+
# Autogenerated by Sphinx on Mon Jun 28 10:13:28 2021
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -5321,19 +5321,19 @@
53215321
'complex\n'
53225322
'types. For integers, when binary, octal, or hexadecimal '
53235323
'output is\n'
5324-
'used, this option adds the prefix respective "\'0b\'", '
5325-
'"\'0o\'", or "\'0x\'"\n'
5326-
'to the output value. For float and complex the alternate '
5327-
'form causes\n'
5328-
'the result of the conversion to always contain a '
5329-
'decimal-point\n'
5330-
'character, even if no digits follow it. Normally, a '
5331-
'decimal-point\n'
5332-
'character appears in the result of these conversions only '
5333-
'if a digit\n'
5334-
'follows it. In addition, for "\'g\'" and "\'G\'" '
5335-
'conversions, trailing\n'
5336-
'zeros are not removed from the result.\n'
5324+
'used, this option adds the respective prefix "\'0b\'", '
5325+
'"\'0o\'", "\'0x\'",\n'
5326+
'or "\'0X\'" to the output value. For float and complex the '
5327+
'alternate\n'
5328+
'form causes the result of the conversion to always contain '
5329+
'a decimal-\n'
5330+
'point character, even if no digits follow it. Normally, a '
5331+
'decimal-\n'
5332+
'point character appears in the result of these conversions '
5333+
'only if a\n'
5334+
'digit follows it. In addition, for "\'g\'" and "\'G\'" '
5335+
'conversions,\n'
5336+
'trailing zeros are not removed from the result.\n'
53375337
'\n'
53385338
'The "\',\'" option signals the use of a comma for a '
53395339
'thousands separator.\n'
@@ -5446,8 +5446,12 @@
54465446
'+-----------+------------------------------------------------------------+\n'
54475447
' | "\'X\'" | Hex format. Outputs the number in base '
54485448
'16, using upper- |\n'
5449-
' | | case letters for the digits above '
5450-
'9. |\n'
5449+
' | | case letters for the digits above 9. In '
5450+
'case "\'#\'" is |\n'
5451+
' | | specified, the prefix "\'0x\'" will be '
5452+
'upper-cased to "\'0X\'" |\n'
5453+
' | | as '
5454+
'well. |\n'
54515455
' '
54525456
'+-----------+------------------------------------------------------------+\n'
54535457
' | "\'n\'" | Number. This is the same as "\'d\'", '
@@ -6283,7 +6287,7 @@
62836287
' | "from" relative_module "import" "(" '
62846288
'identifier ["as" identifier]\n'
62856289
' ("," identifier ["as" identifier])* [","] ")"\n'
6286-
' | "from" module "import" "*"\n'
6290+
' | "from" relative_module "import" "*"\n'
62876291
' module ::= (identifier ".")* identifier\n'
62886292
' relative_module ::= "."* module | "."+\n'
62896293
'\n'

0 commit comments

Comments
 (0)