Skip to content

Commit

Permalink
Python 3.13.0a4
Browse files Browse the repository at this point in the history
  • Loading branch information
Yhg1s committed Feb 15, 2024
1 parent b0e5c35 commit 9d34f60
Show file tree
Hide file tree
Showing 141 changed files with 1,471 additions and 349 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 13
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
#define PY_RELEASE_SERIAL 3
#define PY_RELEASE_SERIAL 4

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

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
68 changes: 35 additions & 33 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 Wed Jan 17 13:09:41 2024
# Autogenerated by Sphinx on Thu Feb 15 14:30:52 2024
# as part of the release process.
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
Expand Down Expand Up @@ -722,9 +722,9 @@
'\n'
'object.__dir__(self)\n'
'\n'
' Called when "dir()" is called on the object. A '
'sequence must be\n'
' returned. "dir()" converts the returned sequence to a '
' Called when "dir()" is called on the object. An '
'iterable must be\n'
' returned. "dir()" converts the returned iterable to a '
'list and\n'
' sorts it.\n'
'\n'
Expand All @@ -751,8 +751,8 @@
'returned.\n'
'\n'
'The "__dir__" function should accept no arguments, and '
'return a\n'
'sequence of strings that represents the names accessible '
'return an\n'
'iterable of strings that represents the names accessible '
'on module. If\n'
'present, this function overrides the standard "dir()" '
'search on a\n'
Expand Down Expand Up @@ -4921,7 +4921,7 @@
'and continue running without the debugger using the "continue"\n'
'command.\n'
'\n'
'New in version 3.7: The built-in "breakpoint()", when called '
'Changed in version 3.7: The built-in "breakpoint()", when called '
'with\n'
'defaults, can be used instead of "import pdb; pdb.set_trace()".\n'
'\n'
Expand Down Expand Up @@ -4965,11 +4965,11 @@
'the\n'
'debugger upon program’s exit.\n'
'\n'
'New in version 3.2: "-c" option is introduced to execute '
'Changed in version 3.2: Added the "-c" option to execute '
'commands as\n'
'if given in a ".pdbrc" file, see Debugger Commands.\n'
'if given in a ".pdbrc" file; see Debugger Commands.\n'
'\n'
'New in version 3.7: "-m" option is introduced to execute '
'Changed in version 3.7: Added the "-m" option to execute '
'modules\n'
'similar to the way "python -m" does. As with a script, the '
'debugger\n'
Expand Down Expand Up @@ -5115,11 +5115,11 @@
'\n'
' Raises an auditing event "pdb.Pdb" with no arguments.\n'
'\n'
' New in version 3.1: The *skip* argument.\n'
' Changed in version 3.1: Added the *skip* parameter.\n'
'\n'
' New in version 3.2: The *nosigint* argument. Previously, a '
'SIGINT\n'
' handler was never set by Pdb.\n'
' Changed in version 3.2: Added the *nosigint* parameter. '
'Previously,\n'
' a SIGINT handler was never set by Pdb.\n'
'\n'
' Changed in version 3.6: The *readrc* argument.\n'
'\n'
Expand Down Expand Up @@ -5466,7 +5466,7 @@
'differs\n'
' from the current line.\n'
'\n'
' New in version 3.2: The ">>" marker.\n'
' Changed in version 3.2: Added the ">>" marker.\n'
'\n'
'll | longlist\n'
'\n'
Expand Down Expand Up @@ -5599,9 +5599,9 @@
'\n'
' New in version 3.2.\n'
'\n'
' New in version 3.13: "exit()" and "quit()" can be used to '
' Changed in version 3.13: "exit()" and "quit()" can be used to '
'exit\n'
' "interact" command.\n'
' the "interact" command.\n'
'\n'
' Changed in version 3.13: "interact" directs its output to '
'the\n'
Expand Down Expand Up @@ -6470,15 +6470,15 @@
'originally\n'
'proposed by **PEP 448**.\n'
'\n'
'The trailing comma is required only to create a single tuple '
'(a.k.a. a\n'
'*singleton*); it is optional in all other cases. A single '
'expression\n'
'without a trailing comma doesn’t create a tuple, but rather '
'yields the\n'
'value of that expression. (To create an empty tuple, use an '
'empty pair\n'
'of parentheses: "()".)\n',
'A trailing comma is required only to create a one-item tuple, '
'such as\n'
'"1,"; it is optional in all other cases. A single expression '
'without a\n'
'trailing comma doesn’t create a tuple, but rather yields the '
'value of\n'
'that expression. (To create an empty tuple, use an empty pair '
'of\n'
'parentheses: "()".)\n',
'floating': 'Floating point literals\n'
'***********************\n'
'\n'
Expand Down Expand Up @@ -10384,9 +10384,9 @@
'\n'
'object.__dir__(self)\n'
'\n'
' Called when "dir()" is called on the object. A sequence '
' Called when "dir()" is called on the object. An iterable '
'must be\n'
' returned. "dir()" converts the returned sequence to a '
' returned. "dir()" converts the returned iterable to a '
'list and\n'
' sorts it.\n'
'\n'
Expand All @@ -10413,8 +10413,8 @@
'returned.\n'
'\n'
'The "__dir__" function should accept no arguments, and '
'return a\n'
'sequence of strings that represents the names accessible on '
'return an\n'
'iterable of strings that represents the names accessible on '
'module. If\n'
'present, this function overrides the standard "dir()" search '
'on a\n'
Expand Down Expand Up @@ -14543,7 +14543,9 @@
'name |\n'
'+----------------------------------------------------+----------------------------------------------------+\n'
'| codeobject.co_qualname | The fully '
'qualified function name |\n'
'qualified function name New in version |\n'
'| | '
'3.11. |\n'
'+----------------------------------------------------+----------------------------------------------------+\n'
'| codeobject.co_argcount | The total '
'number of positional *parameters* |\n'
Expand Down Expand Up @@ -15008,8 +15010,8 @@
'around another object that alters the way in which that object is\n'
'retrieved from classes and class instances. The behaviour of class\n'
'method objects upon such retrieval is described above, under '
'“User-\n'
'defined methods”. Class method objects are created by the built-in\n'
'“instance\n'
'methods”. Class method objects are created by the built-in\n'
'"classmethod()" constructor.\n',
'typesfunctions': 'Functions\n'
'*********\n'
Expand Down
Loading

0 comments on commit 9d34f60

Please sign in to comment.