mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
Python 3.14.0a4
This commit is contained in:
parent
ff3e145b27
commit
f26daa9470
96 changed files with 880 additions and 230 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue