Skip to content

Commit

Permalink
Python 3.12.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yhg1s committed Aug 5, 2023
1 parent 236cdad commit 63bcd91
Show file tree
Hide file tree
Showing 52 changed files with 515 additions and 124 deletions.
6 changes: 3 additions & 3 deletions Include/patchlevel.h
Expand Up @@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 12
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
#define PY_RELEASE_SERIAL 4
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
#define PY_RELEASE_SERIAL 1

/* Version as a string */
#define PY_VERSION "3.12.0b4+"
#define PY_VERSION "3.12.0rc1"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
23 changes: 15 additions & 8 deletions Lib/pydoc_data/topics.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Tue Jul 11 14:22:58 2023
# Autogenerated by Sphinx on Sat Aug 5 14:10:40 2023
# as part of the release process.
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
Expand Down Expand Up @@ -9689,7 +9689,8 @@
' still alive. The list is in definition order. Example:\n'
'\n'
' >>> int.__subclasses__()\n'
" [<class 'bool'>]\n",
" [<class 'bool'>, <enum 'IntEnum'>, <flag 'IntFlag'>, "
"<class 're._constants._NamedIntConstant'>]\n",
'specialnames': 'Special method names\n'
'********************\n'
'\n'
Expand Down Expand Up @@ -12558,7 +12559,7 @@
'followed by\n'
' the string itself.\n'
'\n'
'str.rsplit(sep=None, maxsplit=- 1)\n'
'str.rsplit(sep=None, maxsplit=-1)\n'
'\n'
' Return a list of the words in the string, using *sep* '
'as the\n'
Expand Down Expand Up @@ -12599,7 +12600,7 @@
" >>> 'Monty Python'.removesuffix(' Python')\n"
" 'Monty'\n"
'\n'
'str.split(sep=None, maxsplit=- 1)\n'
'str.split(sep=None, maxsplit=-1)\n'
'\n'
' Return a list of the words in the string, using *sep* '
'as the\n'
Expand Down Expand Up @@ -13009,6 +13010,10 @@
'the\n'
'literal, i.e. either "\'" or """.)\n'
'\n'
'\n'
'Escape sequences\n'
'================\n'
'\n'
'Unless an "\'r\'" or "\'R\'" prefix is present, escape sequences '
'in string\n'
'and bytes literals are interpreted according to rules similar to '
Expand Down Expand Up @@ -15184,10 +15189,12 @@
' >>> # set operations\n'
" >>> keys & {'eggs', 'bacon', 'salad'}\n"
" {'bacon'}\n"
" >>> keys ^ {'sausage', 'juice'}\n"
" {'juice', 'sausage', 'bacon', 'spam'}\n"
" >>> keys | ['juice', 'juice', 'juice']\n"
" {'juice', 'sausage', 'bacon', 'spam', 'eggs'}\n"
" >>> keys ^ {'sausage', 'juice'} == {'juice', 'sausage', "
"'bacon', 'spam'}\n"
' True\n'
" >>> keys | ['juice', 'juice', 'juice'] == {'bacon', "
"'spam', 'juice'}\n"
' True\n'
'\n'
' >>> # get back a read-only proxy for the original '
'dictionary\n'
Expand Down

0 comments on commit 63bcd91

Please sign in to comment.