Skip to content

Commit 9d34f60

Browse files
committed
Python 3.13.0a4
1 parent b0e5c35 commit 9d34f60

File tree

141 files changed

+1471
-349
lines changed

Some content is hidden

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

141 files changed

+1471
-349
lines changed

Include/patchlevel.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 13
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
23-
#define PY_RELEASE_SERIAL 3
23+
#define PY_RELEASE_SERIAL 4
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.13.0a3+"
26+
#define PY_VERSION "3.13.0a4"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

+35-33
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Jan 17 13:09:41 2024
2+
# Autogenerated by Sphinx on Thu Feb 15 14:30:52 2024
33
# as part of the release process.
44
topics = {'assert': 'The "assert" statement\n'
55
'**********************\n'
@@ -722,9 +722,9 @@
722722
'\n'
723723
'object.__dir__(self)\n'
724724
'\n'
725-
' Called when "dir()" is called on the object. A '
726-
'sequence must be\n'
727-
' returned. "dir()" converts the returned sequence to a '
725+
' Called when "dir()" is called on the object. An '
726+
'iterable must be\n'
727+
' returned. "dir()" converts the returned iterable to a '
728728
'list and\n'
729729
' sorts it.\n'
730730
'\n'
@@ -751,8 +751,8 @@
751751
'returned.\n'
752752
'\n'
753753
'The "__dir__" function should accept no arguments, and '
754-
'return a\n'
755-
'sequence of strings that represents the names accessible '
754+
'return an\n'
755+
'iterable of strings that represents the names accessible '
756756
'on module. If\n'
757757
'present, this function overrides the standard "dir()" '
758758
'search on a\n'
@@ -4921,7 +4921,7 @@
49214921
'and continue running without the debugger using the "continue"\n'
49224922
'command.\n'
49234923
'\n'
4924-
'New in version 3.7: The built-in "breakpoint()", when called '
4924+
'Changed in version 3.7: The built-in "breakpoint()", when called '
49254925
'with\n'
49264926
'defaults, can be used instead of "import pdb; pdb.set_trace()".\n'
49274927
'\n'
@@ -4965,11 +4965,11 @@
49654965
'the\n'
49664966
'debugger upon program’s exit.\n'
49674967
'\n'
4968-
'New in version 3.2: "-c" option is introduced to execute '
4968+
'Changed in version 3.2: Added the "-c" option to execute '
49694969
'commands as\n'
4970-
'if given in a ".pdbrc" file, see Debugger Commands.\n'
4970+
'if given in a ".pdbrc" file; see Debugger Commands.\n'
49714971
'\n'
4972-
'New in version 3.7: "-m" option is introduced to execute '
4972+
'Changed in version 3.7: Added the "-m" option to execute '
49734973
'modules\n'
49744974
'similar to the way "python -m" does. As with a script, the '
49754975
'debugger\n'
@@ -5115,11 +5115,11 @@
51155115
'\n'
51165116
' Raises an auditing event "pdb.Pdb" with no arguments.\n'
51175117
'\n'
5118-
' New in version 3.1: The *skip* argument.\n'
5118+
' Changed in version 3.1: Added the *skip* parameter.\n'
51195119
'\n'
5120-
' New in version 3.2: The *nosigint* argument. Previously, a '
5121-
'SIGINT\n'
5122-
' handler was never set by Pdb.\n'
5120+
' Changed in version 3.2: Added the *nosigint* parameter. '
5121+
'Previously,\n'
5122+
' a SIGINT handler was never set by Pdb.\n'
51235123
'\n'
51245124
' Changed in version 3.6: The *readrc* argument.\n'
51255125
'\n'
@@ -5466,7 +5466,7 @@
54665466
'differs\n'
54675467
' from the current line.\n'
54685468
'\n'
5469-
' New in version 3.2: The ">>" marker.\n'
5469+
' Changed in version 3.2: Added the ">>" marker.\n'
54705470
'\n'
54715471
'll | longlist\n'
54725472
'\n'
@@ -5599,9 +5599,9 @@
55995599
'\n'
56005600
' New in version 3.2.\n'
56015601
'\n'
5602-
' New in version 3.13: "exit()" and "quit()" can be used to '
5602+
' Changed in version 3.13: "exit()" and "quit()" can be used to '
56035603
'exit\n'
5604-
' "interact" command.\n'
5604+
' the "interact" command.\n'
56055605
'\n'
56065606
' Changed in version 3.13: "interact" directs its output to '
56075607
'the\n'
@@ -6470,15 +6470,15 @@
64706470
'originally\n'
64716471
'proposed by **PEP 448**.\n'
64726472
'\n'
6473-
'The trailing comma is required only to create a single tuple '
6474-
'(a.k.a. a\n'
6475-
'*singleton*); it is optional in all other cases. A single '
6476-
'expression\n'
6477-
'without a trailing comma doesn’t create a tuple, but rather '
6478-
'yields the\n'
6479-
'value of that expression. (To create an empty tuple, use an '
6480-
'empty pair\n'
6481-
'of parentheses: "()".)\n',
6473+
'A trailing comma is required only to create a one-item tuple, '
6474+
'such as\n'
6475+
'"1,"; it is optional in all other cases. A single expression '
6476+
'without a\n'
6477+
'trailing comma doesn’t create a tuple, but rather yields the '
6478+
'value of\n'
6479+
'that expression. (To create an empty tuple, use an empty pair '
6480+
'of\n'
6481+
'parentheses: "()".)\n',
64826482
'floating': 'Floating point literals\n'
64836483
'***********************\n'
64846484
'\n'
@@ -10384,9 +10384,9 @@
1038410384
'\n'
1038510385
'object.__dir__(self)\n'
1038610386
'\n'
10387-
' Called when "dir()" is called on the object. A sequence '
10387+
' Called when "dir()" is called on the object. An iterable '
1038810388
'must be\n'
10389-
' returned. "dir()" converts the returned sequence to a '
10389+
' returned. "dir()" converts the returned iterable to a '
1039010390
'list and\n'
1039110391
' sorts it.\n'
1039210392
'\n'
@@ -10413,8 +10413,8 @@
1041310413
'returned.\n'
1041410414
'\n'
1041510415
'The "__dir__" function should accept no arguments, and '
10416-
'return a\n'
10417-
'sequence of strings that represents the names accessible on '
10416+
'return an\n'
10417+
'iterable of strings that represents the names accessible on '
1041810418
'module. If\n'
1041910419
'present, this function overrides the standard "dir()" search '
1042010420
'on a\n'
@@ -14543,7 +14543,9 @@
1454314543
'name |\n'
1454414544
'+----------------------------------------------------+----------------------------------------------------+\n'
1454514545
'| codeobject.co_qualname | The fully '
14546-
'qualified function name |\n'
14546+
'qualified function name New in version |\n'
14547+
'| | '
14548+
'3.11. |\n'
1454714549
'+----------------------------------------------------+----------------------------------------------------+\n'
1454814550
'| codeobject.co_argcount | The total '
1454914551
'number of positional *parameters* |\n'
@@ -15008,8 +15010,8 @@
1500815010
'around another object that alters the way in which that object is\n'
1500915011
'retrieved from classes and class instances. The behaviour of class\n'
1501015012
'method objects upon such retrieval is described above, under '
15011-
'“User-\n'
15012-
'defined methods”. Class method objects are created by the built-in\n'
15013+
'“instance\n'
15014+
'methods”. Class method objects are created by the built-in\n'
1501315015
'"classmethod()" constructor.\n',
1501415016
'typesfunctions': 'Functions\n'
1501515017
'*********\n'

0 commit comments

Comments
 (0)