mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
Python 3.13.0a2
This commit is contained in:
parent
ad0e2a9332
commit
9c4347ef8b
156 changed files with 1651 additions and 403 deletions
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Autogenerated by Sphinx on Fri Oct 13 10:51:21 2023
|
||||
# Autogenerated by Sphinx on Wed Nov 22 11:44:32 2023
|
||||
# as part of the release process.
|
||||
topics = {'assert': 'The "assert" statement\n'
|
||||
'**********************\n'
|
||||
|
@ -5574,7 +5574,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
' Create an alias called *name* that executes *command*. The\n'
|
||||
' *command* must *not* be enclosed in quotes. Replaceable '
|
||||
'parameters\n'
|
||||
' can be indicated by "%1", "%2", and so on, while "%*" is '
|
||||
' can be indicated by "%1", "%2", … and "%9", while "%*" is '
|
||||
'replaced\n'
|
||||
' by all the parameters. If *command* is omitted, the current '
|
||||
'alias\n'
|
||||
|
@ -14650,10 +14650,16 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
' objects (for example when catching an exception and storing its\n'
|
||||
' traceback for later use).\n'
|
||||
'\n'
|
||||
' "RuntimeError" is raised if the frame is currently executing.\n'
|
||||
' "RuntimeError" is raised if the frame is currently executing or\n'
|
||||
' suspended.\n'
|
||||
'\n'
|
||||
' New in version 3.4.\n'
|
||||
'\n'
|
||||
' Changed in version 3.13: Attempting to clear a suspended frame\n'
|
||||
' raises "RuntimeError" (as has always been the case for '
|
||||
'executing\n'
|
||||
' frames).\n'
|
||||
'\n'
|
||||
'\n'
|
||||
'Traceback objects\n'
|
||||
'-----------------\n'
|
||||
|
@ -15216,21 +15222,23 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'\n'
|
||||
'Keys views are set-like since their entries are unique and '
|
||||
'*hashable*.\n'
|
||||
'If all values are hashable, so that "(key, value)" pairs are '
|
||||
'unique\n'
|
||||
'and hashable, then the items view is also set-like. (Values '
|
||||
'views are\n'
|
||||
'not treated as set-like since the entries are generally not '
|
||||
'unique.)\n'
|
||||
'For set-like views, all of the operations defined for the '
|
||||
'abstract\n'
|
||||
'base class "collections.abc.Set" are available (for example, '
|
||||
'"==",\n'
|
||||
'"<", or "^"). While using set operators, set-like views '
|
||||
'accept any\n'
|
||||
'iterable as the other operand, unlike sets which only accept '
|
||||
'sets as\n'
|
||||
'the input.\n'
|
||||
'Items views also have set-like operations since the (key, '
|
||||
'value) pairs\n'
|
||||
'are unique and the keys are hashable. If all values in an '
|
||||
'items view\n'
|
||||
'are hashable as well, then the items view can interoperate '
|
||||
'with other\n'
|
||||
'sets. (Values views are not treated as set-like since the '
|
||||
'entries are\n'
|
||||
'generally not unique.) For set-like views, all of the '
|
||||
'operations\n'
|
||||
'defined for the abstract base class "collections.abc.Set" '
|
||||
'are\n'
|
||||
'available (for example, "==", "<", or "^"). While using '
|
||||
'set\n'
|
||||
'operators, set-like views accept any iterable as the other '
|
||||
'operand,\n'
|
||||
'unlike sets which only accept sets as the input.\n'
|
||||
'\n'
|
||||
'An example of dictionary view usage:\n'
|
||||
'\n'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue