8000 Python 3.13.0a2 · python/cpython@9c4347e · GitHub
[go: up one dir, main page]

Skip to content

Commit 9c4347e

Browse files
committed
Python 3.13.0a2
1 parent ad0e2a9 commit 9c4347e

File tree

156 files changed

+1651
-403
lines changed

Some content is hidden

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

156 files changed

+1651
-403
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
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 1
23+
#define PY_RELEASE_SERIAL 2
2424

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

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

Lib/pydoc_data/topics.py

Lines changed: 26 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Fri Oct 13 10:51:21 2023
2+
# Autogenerated by Sphinx on Wed Nov 22 11:44:32 2023
33
# as part of the release process.
44
topics = {'assert': 'The "assert" statement\n'
55
'**********************\n'
@@ -5574,7 +5574,7 @@
55745574
' Create an alias called *name* that executes *command*. The\n'
55755575
' *command* must *not* be enclosed in quotes. Replaceable '
55765576
'parameters\n'
5577-
' can be indicated by "%1", "%2", and so on, while "%*" is '
5577+
' can be indicated by "%1", "%2", and "%9", while "%*" is '
55785578
'replaced\n'
55795579
' by all the parameters. If *command* is omitted, the current '
55805580
'alias\n'
@@ -14650,10 +14650,16 @@
1465014650
' objects (for example when catching an exception and storing its\n'
1465114651
' traceback for later use).\n'
1465214652
'\n'
14653-
' "RuntimeError" is raised if the frame is currently executing.\n'
14653+
' "RuntimeError" is raised if the frame is currently executing or\n'
14654+
' suspended.\n'
1465414655
'\n'
1465514656
' New in version 3.4.\n'
1465614657
'\n'
14658+
' Changed in version 3.13: Attempting to clear a suspended frame\n'
14659+
' raises "RuntimeError" (as has always been the case for '
14660+
'executing\n'
14661+
' frames).\n'
14662+
'\n'
1465714663
'\n'
1465814664
'Traceback objects\n'
1465914665
'-----------------\n'
@@ -15216,21 +15222,23 @@
1521615222
'\n'
1521715223
'Keys views are set-like since their entries are unique and '
1521815224
'*hashable*.\n'
15219-
'If all values are hashable, so that "(key, value)" pairs are '
15220-
'unique\n'
15221-
'and hashable, then the items view is also set-like. (Values '
15222-
'views are\n'
15223-
'not treated as set-like since the entries are generally not '
15224-
'unique.)\n'
15225-
'For set-like views, all of the operations defined for the '
15226-
'abstract\n'
15227-
'base class "collections.abc.Set" are available (for example, '
15228-
'"==",\n'
15229-
'"<", or "^"). While using set operators, set-like views '
15230-
'accept any\n'
15231-
'iterable as the other operand, unlike sets which only accept '
15232-
'sets as\n'
15233-
'the input.\n'
15225+
'Items views also have set-like operations since the (key, '
15226+
'value) pairs\n'
15227+
'are unique and the keys are hashable. If all values in an '
15228+
'items view\n'
15229+
'are hashable as well, then the items view can interoperate '
15230+
'with other\n'
15231+
'sets. (Values views are not treated as set-like since the '
15232+
'entries are\n'
15233+
'generally not unique.) For set-like views, all of the '
15234+
'operations\n'
15235+
'defined for the abstract base class "collections.abc.Set" '
15236+
'are\n'
15237+
'available (for example, "==", "<", or "^"). While using '
15238+
'set\n'
15239+
'operators, set-like views accept any iterable as the other '
15240+
'operand,\n'
15241+
'unlike sets which only accept sets as the input.\n'
1523415242
'\n'
1523515243
'An example of dictionary view usage:\n'
1523615244
'\n'

0 commit comments

Comments
 (0)
0