Skip to content

Commit 5a7e1e0

Browse files
committed
Python 3.11.0b4
1 parent a276833 commit 5a7e1e0

111 files changed

Lines changed: 1128 additions & 245 deletions

File tree

Some content is hidden

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

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 11
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
23-
#define PY_RELEASE_SERIAL 3
23+
#define PY_RELEASE_SERIAL 4
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.11.0b3+"
26+
#define PY_VERSION "3.11.0b4"
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Jun 1 14:07:03 2022
2+
# Autogenerated by Sphinx on Mon Jul 11 16:25:08 2022
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -4144,7 +4144,7 @@
41444144
' invoking the superclass’s "__new__()" method using\n'
41454145
' "super().__new__(cls[, ...])" with appropriate arguments '
41464146
'and then\n'
4147-
' modifying the newly-created instance as necessary before '
4147+
' modifying the newly created instance as necessary before '
41484148
'returning\n'
41494149
' it.\n'
41504150
'\n'
@@ -4547,7 +4547,7 @@
45474547
'Python.This is\n'
45484548
' intended to provide protection against a '
45494549
'denial-of-service caused\n'
4550-
' by carefully-chosen inputs that exploit the worst '
4550+
' by carefully chosen inputs that exploit the worst '
45514551
'case\n'
45524552
' performance of a dict insertion, O(n^2) complexity. '
45534553
'See\n'
@@ -9076,7 +9076,7 @@
90769076
' invoking the superclass’s "__new__()" method using\n'
90779077
' "super().__new__(cls[, ...])" with appropriate arguments '
90789078
'and then\n'
9079-
' modifying the newly-created instance as necessary before '
9079+
' modifying the newly created instance as necessary before '
90809080
'returning\n'
90819081
' it.\n'
90829082
'\n'
@@ -9477,7 +9477,7 @@
94779477
'is\n'
94789478
' intended to provide protection against a '
94799479
'denial-of-service caused\n'
9480-
' by carefully-chosen inputs that exploit the worst case\n'
9480+
' by carefully chosen inputs that exploit the worst case\n'
94819481
' performance of a dict insertion, O(n^2) complexity. '
94829482
'See\n'
94839483
' http://www.ocert.org/advisories/ocert-2011-003.html '

0 commit comments

Comments
 (0)