Skip to content

Commit

Permalink
Python 3.10.0rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogsal committed Sep 7, 2021
1 parent 53257cf commit 839d789
Show file tree
Hide file tree
Showing 70 changed files with 695 additions and 152 deletions.
4 changes: 2 additions & 2 deletions Include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
#define PY_MINOR_VERSION 10
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
#define PY_RELEASE_SERIAL 1
#define PY_RELEASE_SERIAL 2

/* Version as a string */
#define PY_VERSION "3.10.0rc1+"
#define PY_VERSION "3.10.0rc2"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
11 changes: 7 additions & 4 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 Aug 2 20:07:41 2021
# Autogenerated by Sphinx on Tue Sep 7 14:18:15 2021
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
Expand Down Expand Up @@ -1332,7 +1332,7 @@
'result. Division by zero raises the "ZeroDivisionError" '
'exception.\n'
'\n'
'This operation can be customized using the special "__div__()" '
'This operation can be customized using the special "__truediv__()" '
'and\n'
'"__floordiv__()" methods.\n'
'\n'
Expand Down Expand Up @@ -13364,8 +13364,11 @@
' variables; "f_globals" is used for global variables;\n'
' "f_builtins" is used for built-in (intrinsic) names; '
'"f_lasti"\n'
' gives the precise instruction (this is an index into the\n'
' bytecode string of the code object).\n'
' gives the precise instruction (it represents a wordcode '
'index,\n'
' which means that to get an index into the bytecode string of '
'the\n'
' code object it needs to be multiplied by 2).\n'
'\n'
' Accessing "f_code" raises an auditing event '
'"object.__getattr__"\n'
Expand Down
Loading

0 comments on commit 839d789

Please sign in to comment.