summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2025-01-14 11:41:39 (GMT)
committerHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2025-01-14 11:52:58 (GMT)
commitf26daa9470925120f6336ca508f7ea193b00a3f4 (patch)
treeb422a947239db4846e422383b236595c98a102f1 /Lib
parentff3e145b2770ffe86c905b1092747ce3d8381319 (diff)
downloadcpython-3.14.0a4.zip
cpython-3.14.0a4.tar.gz
cpython-3.14.0a4.tar.bz2
Python 3.14.0a4v3.14.0a4
Diffstat (limited to 'Lib')
-rw-r--r--Lib/pydoc_data/topics.py33
1 files changed, 20 insertions, 13 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index aebcef2..97fed45 100644
--- a/Lib/pydoc_data/topics.py
+++ b/Lib/pydoc_data/topics.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Autogenerated by Sphinx on Tue Dec 17 11:49:52 2024
+# Autogenerated by Sphinx on Tue Jan 14 13:41:56 2025
# as part of the release process.
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
@@ -2822,15 +2822,18 @@ topics = {'assert': 'The "assert" statement\n'
' enter = type(manager).__enter__\n'
' exit = type(manager).__exit__\n'
' value = enter(manager)\n'
+ ' hit_except = False\n'
'\n'
' try:\n'
' TARGET = value\n'
' SUITE\n'
' except:\n'
+ ' hit_except = True\n'
' if not exit(manager, *sys.exc_info()):\n'
' raise\n'
- ' else:\n'
- ' exit(manager, None, None, None)\n'
+ ' finally:\n'
+ ' if not hit_except:\n'
+ ' exit(manager, None, None, None)\n'
'\n'
'With more than one item, the context managers are processed as '
'if\n'
@@ -5286,15 +5289,16 @@ topics = {'assert': 'The "assert" statement\n'
'\n'
' Added in version 3.14: The *commands* argument.\n'
'\n'
- 'pdb.post_mortem(traceback=None)\n'
+ 'pdb.post_mortem(t=None)\n'
'\n'
- ' Enter post-mortem debugging of the given *traceback* object. '
- 'If no\n'
- ' *traceback* is given, it uses the one of the exception that '
- 'is\n'
- ' currently being handled (an exception must be being handled '
- 'if the\n'
- ' default is to be used).\n'
+ ' Enter post-mortem debugging of the given exception or '
+ 'traceback\n'
+ ' object. If no value is given, it uses the exception that is\n'
+ ' currently being handled, or raises "ValueError" if there '
+ 'isn’t one.\n'
+ '\n'
+ ' Changed in version 3.13: Support for exception objects was '
+ 'added.\n'
'\n'
'pdb.pm()\n'
'\n'
@@ -17403,15 +17407,18 @@ topics = {'assert': 'The "assert" statement\n'
' enter = type(manager).__enter__\n'
' exit = type(manager).__exit__\n'
' value = enter(manager)\n'
+ ' hit_except = False\n'
'\n'
' try:\n'
' TARGET = value\n'
' SUITE\n'
' except:\n'
+ ' hit_except = True\n'
' if not exit(manager, *sys.exc_info()):\n'
' raise\n'
- ' else:\n'
- ' exit(manager, None, None, None)\n'
+ ' finally:\n'
+ ' if not hit_except:\n'
+ ' exit(manager, None, None, None)\n'
'\n'
'With more than one item, the context managers are processed as if\n'
'multiple "with" statements were nested:\n'