Skip to content

Commit

Permalink
Python 3.13.0a2
Browse files Browse the repository at this point in the history
  • Loading branch information
Yhg1s committed Nov 22, 2023
1 parent ad0e2a9 commit 9c4347e
Show file tree
Hide file tree
Showing 156 changed files with 1,651 additions and 403 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 1
#define PY_RELEASE_SERIAL 2

/* Version as a string */
#define PY_VERSION "3.13.0a1+"
#define PY_VERSION "3.13.0a2"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
44 changes: 26 additions & 18 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 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'
Expand Down Expand Up @@ -5574,7 +5574,7 @@
' 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'
Expand Down Expand Up @@ -14650,10 +14650,16 @@
' 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'
Expand Down Expand Up @@ -15216,21 +15222,23 @@
'\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'
Expand Down
Loading

0 comments on commit 9c4347e

Please sign in to comment.