8000 Python 3.12.0a5 · python/cpython@3c67ec3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3c67ec3

Browse files
committed
Python 3.12.0a5
1 parent 7990324 commit 3c67ec3

File tree

68 files changed

+680
-145
lines changed

Some content is hidden

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

68 files changed

+680
-145
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 12
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
23-
#define PY_RELEASE_SERIAL 4
23+
#define PY_RELEASE_SERIAL 5
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.12.0a4+"
26+
#define PY_VERSION "3.12.0a5"
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: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Tue Jan 10 13:08:32 2023
2+
# Autogenerated by Sphinx on Tue Feb 7 13:18:04 2023
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -4647,6 +4647,18 @@
46474647
'the source. The extension interface uses the modules "bdb" and '
46484648
'"cmd".\n'
46494649
'\n'
4650+
'See also:\n'
4651+
'\n'
4652+
' Module "faulthandler"\n'
4653+
' Used to dump Python tracebacks explicitly, on a fault, '
4654+
'after a\n'
4655+
' timeout, or on a user signal.\n'
4656+
'\n'
4657+
' Module "traceback"\n'
4658+
' Standard interface to extract, format and print stack '
4659+
'traces of\n'
4660+
' Python programs.\n'
4661+
'\n'
46504662
'The debugger’s prompt is "(Pdb)". Typical usage to run a program '
46514663
'under\n'
46524664
'control of the debugger is:\n'

0 commit comments

Comments
 (0)
0