Skip to content

Commit

Permalink
Python 3.12.0b3
Browse files Browse the repository at this point in the history
  • Loading branch information
Yhg1s committed Jun 19, 2023
1 parent 225cc4c commit f992a60
Show file tree
Hide file tree
Showing 44 changed files with 435 additions and 111 deletions.
4 changes: 2 additions & 2 deletions Include/patchlevel.h
Expand Up @@ -20,10 +20,10 @@
#define PY_MINOR_VERSION 12
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
#define PY_RELEASE_SERIAL 2
#define PY_RELEASE_SERIAL 3

/* Version as a string */
#define PY_VERSION "3.12.0b2+"
#define PY_VERSION "3.12.0b3"
/*--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
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Tue Jun 6 16:12:51 2023
# Autogenerated by Sphinx on Mon Jun 19 20:55:48 2023
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
Expand Down Expand Up @@ -6522,22 +6522,26 @@
'positional\n'
'argument, and if it’s a keyword, it refers to a named '
'keyword\n'
'argument. If the numerical arg_names in a format string '
'are 0, 1, 2,\n'
'… in sequence, they can all be omitted (not just some) and '
'the numbers\n'
'0, 1, 2, … will be automatically inserted in that order. '
'Because\n'
'*arg_name* is not quote-delimited, it is not possible to '
'specify\n'
'arbitrary dictionary keys (e.g., the strings "\'10\'" or '
'"\':-]\'") within\n'
'a format string. The *arg_name* can be followed by any '
'number of index\n'
'or attribute expressions. An expression of the form '
'"\'.name\'" selects\n'
'the named attribute using "getattr()", while an expression '
'of the form\n'
'argument. An *arg_name* is treated as a number if a call '
'to\n'
'"str.isdecimal()" on the string would return true. If the '
'numerical\n'
'arg_names in a format string are 0, 1, 2, … in sequence, '
'they can all\n'
'be omitted (not just some) and the numbers 0, 1, 2, … will '
'be\n'
'automatically inserted in that order. Because *arg_name* is '
'not quote-\n'
'delimited, it is not possible to specify arbitrary '
'dictionary keys\n'
'(e.g., the strings "\'10\'" or "\':-]\'") within a format '
'string. The\n'
'*arg_name* can be followed by any number of index or '
'attribute\n'
'expressions. An expression of the form "\'.name\'" selects '
'the named\n'
'attribute using "getattr()", while an expression of the '
'form\n'
'"\'[index]\'" does an index lookup using "__getitem__()".\n'
'\n'
'Changed in version 3.1: The positional argument specifiers '
Expand Down

0 comments on commit f992a60

Please sign in to comment.