Skip to content

Commit f9774e5

Browse files
committed
Python 3.12.0a6
1 parent a33ca2a commit f9774e5

File tree

83 files changed

+864
-229
lines changed

Some content is hidden

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

83 files changed

+864
-229
lines changed

Include/patchlevel.h

+2-2
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 5
23+
#define PY_RELEASE_SERIAL 6
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.12.0a5+"
26+
#define PY_VERSION "3.12.0a6"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

+40-55
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Tue Feb 7 13:18:04 2023
2+
# Autogenerated by Sphinx on Tue Mar 7 22:42:28 2023
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -2499,42 +2499,33 @@
24992499
'alive\n'
25002500
'until the next garbage collection occurs.\n'
25012501
'\n'
2502-
'Before an "except" clause’s suite is executed, details about '
2503-
'the\n'
2504-
'exception are stored in the "sys" module and can be accessed '
2505-
'via\n'
2506-
'"sys.exc_info()". "sys.exc_info()" returns a 3-tuple consisting '
2507-
'of the\n'
2508-
'exception class, the exception instance and a traceback object '
2509-
'(see\n'
2510-
'section The standard type hierarchy) identifying the point in '
2511-
'the\n'
2512-
'program where the exception occurred. The details about the '
2513-
'exception\n'
2514-
'accessed via "sys.exc_info()" are restored to their previous '
2515-
'values\n'
2516-
'when leaving an exception handler:\n'
2502+
'Before an "except" clause’s suite is executed, the exception is '
2503+
'stored\n'
2504+
'in the "sys" module, where it can be accessed from within the '
2505+
'body of\n'
2506+
'the "except" clause by calling "sys.exception()". When leaving '
2507+
'an\n'
2508+
'exception handler, the exception stored in the "sys" module is '
2509+
'reset\n'
2510+
'to its previous value:\n'
25172511
'\n'
2518-
' >>> print(sys.exc_info())\n'
2519-
' (None, None, None)\n'
2512+
' >>> print(sys.exception())\n'
2513+
' None\n'
25202514
' >>> try:\n'
25212515
' ... raise TypeError\n'
25222516
' ... except:\n'
2523-
' ... print(sys.exc_info())\n'
2517+
' ... print(repr(sys.exception()))\n'
25242518
' ... try:\n'
25252519
' ... raise ValueError\n'
25262520
' ... except:\n'
2527-
' ... print(sys.exc_info())\n'
2528-
' ... print(sys.exc_info())\n'
2521+
' ... print(repr(sys.exception()))\n'
2522+
' ... print(repr(sys.exception()))\n'
25292523
' ...\n'
2530-
" (<class 'TypeError'>, TypeError(), <traceback object at "
2531-
'0x10efad080>)\n'
2532-
" (<class 'ValueError'>, ValueError(), <traceback object at "
2533-
'0x10efad040>)\n'
2534-
" (<class 'TypeError'>, TypeError(), <traceback object at "
2535-
'0x10efad080>)\n'
2536-
' >>> print(sys.exc_info())\n'
2537-
' (None, None, None)\n'
2524+
' TypeError()\n'
2525+
' ValueError()\n'
2526+
' TypeError()\n'
2527+
' >>> print(sys.exception())\n'
2528+
' None\n'
25382529
'\n'
25392530
'\n'
25402531
'"except*" clause\n'
@@ -4533,7 +4524,7 @@
45334524
'objects and\n'
45344525
' implements an "__eq__()" method, it should not '
45354526
'implement\n'
4536-
' "__hash__()", since the implementation of hashable '
4527+
' "__hash__()", since the implementation of *hashable* '
45374528
'collections\n'
45384529
' requires that a key’s hash value is immutable (if the '
45394530
'object’s hash\n'
@@ -9453,7 +9444,7 @@
94539444
' hashable collections. If a class defines mutable objects '
94549445
'and\n'
94559446
' implements an "__eq__()" method, it should not implement\n'
9456-
' "__hash__()", since the implementation of hashable '
9447+
' "__hash__()", since the implementation of *hashable* '
94579448
'collections\n'
94589449
' requires that a key’s hash value is immutable (if the '
94599450
'object’s hash\n'
@@ -12644,37 +12635,31 @@
1264412635
'cycle with the stack frame, keeping all locals in that frame alive\n'
1264512636
'until the next garbage collection occurs.\n'
1264612637
'\n'
12647-
'Before an "except" clause’s suite is executed, details about the\n'
12648-
'exception are stored in the "sys" module and can be accessed via\n'
12649-
'"sys.exc_info()". "sys.exc_info()" returns a 3-tuple consisting of '
12650-
'the\n'
12651-
'exception class, the exception instance and a traceback object (see\n'
12652-
'section The standard type hierarchy) identifying the point in the\n'
12653-
'program where the exception occurred. The details about the '
12654-
'exception\n'
12655-
'accessed via "sys.exc_info()" are restored to their previous values\n'
12656-
'when leaving an exception handler:\n'
12638+
'Before an "except" clause’s suite is executed, the exception is '
12639+
'stored\n'
12640+
'in the "sys" module, where it can be accessed from within the body '
12641+
'of\n'
12642+
'the "except" clause by calling "sys.exception()". When leaving an\n'
12643+
'exception handler, the exception stored in the "sys" module is reset\n'
12644+
'to its previous value:\n'
1265712645
'\n'
12658-
' >>> print(sys.exc_info())\n'
12659-
' (None, None, None)\n'
12646+
' >>> print(sys.exception())\n'
12647+
' None\n'
1266012648
' >>> try:\n'
1266112649
' ... raise TypeError\n'
1266212650
' ... except:\n'
12663-
' ... print(sys.exc_info())\n'
12651+
' ... print(repr(sys.exception()))\n'
1266412652
' ... try:\n'
1266512653
' ... raise ValueError\n'
1266612654
' ... except:\n'
12667-
' ... print(sys.exc_info())\n'
12668-
' ... print(sys.exc_info())\n'
12655+
' ... print(repr(sys.exception()))\n'
12656+
' ... print(repr(sys.exception()))\n'
1266912657
' ...\n'
12670-
" (<class 'TypeError'>, TypeError(), <traceback object at "
12671-
'0x10efad080>)\n'
12672-
" (<class 'ValueError'>, ValueError(), <traceback object at "
12673-
'0x10efad040>)\n'
12674-
" (<class 'TypeError'>, TypeError(), <traceback object at "
12675-
'0x10efad080>)\n'
12676-
' >>> print(sys.exc_info())\n'
12677-
' (None, None, None)\n'
12658+
' TypeError()\n'
12659+
' ValueError()\n'
12660+
' TypeError()\n'
12661+
' >>> print(sys.exception())\n'
12662+
' None\n'
1267812663
'\n'
1267912664
'\n'
1268012665
'"except*" clause\n'
@@ -14408,7 +14393,7 @@
1440814393
' New in version 3.10.\n'
1440914394
'\n'
1441014395
'Keys views are set-like since their entries are unique and '
14411-
'hashable.\n'
14396+
'*hashable*.\n'
1441214397
'If all values are hashable, so that "(key, value)" pairs are '
1441314398
'unique\n'
1441414399
'and hashable, then the items view is also set-like. (Values '

0 commit comments

Comments
 (0)