mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
Python 3.13.0a4
This commit is contained in:
parent
b0e5c35ded
commit
9d34f60783
141 changed files with 1471 additions and 349 deletions
|
@ -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'
|
||||
|
@ -722,9 +722,9 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'\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'
|
||||
|
@ -751,8 +751,8 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'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'
|
||||
|
@ -4921,7 +4921,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'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'
|
||||
|
@ -4965,11 +4965,11 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'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'
|
||||
|
@ -5115,11 +5115,11 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'\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'
|
||||
|
@ -5466,7 +5466,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'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'
|
||||
|
@ -5599,9 +5599,9 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'\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'
|
||||
|
@ -6470,15 +6470,15 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'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'
|
||||
|
@ -10384,9 +10384,9 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'\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'
|
||||
|
@ -10413,8 +10413,8 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'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'
|
||||
|
@ -14543,7 +14543,9 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'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'
|
||||
|
@ -15008,8 +15010,8 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue