summaryrefslogtreecommitdiffstats
path: root/Lib/pydoc_data/topics.py
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2026-01-13 10:26:31 (GMT)
committerHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2026-01-13 10:26:56 (GMT)
commit43cd277ae924c6288eaa9998720c25cb2c26d694 (patch)
treef4f3f5a40dc789ea7e3b027ae9416b95f4a7dc43 /Lib/pydoc_data/topics.py
parentc4ab024530feb3a66d51bcef2e33b309ca0d543f (diff)
downloadcpython-3.15.0a4.zip
cpython-3.15.0a4.tar.gz
cpython-3.15.0a4.tar.bz2
Python 3.15.0a4v3.15.0a4
Diffstat (limited to 'Lib/pydoc_data/topics.py')
-rw-r--r--Lib/pydoc_data/topics.py21
1 files changed, 12 insertions, 9 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index 2f19e84..c290f95 100644
--- a/Lib/pydoc_data/topics.py
+++ b/Lib/pydoc_data/topics.py
@@ -1,4 +1,4 @@
-# Autogenerated by Sphinx on Tue Dec 16 14:26:04 2025
+# Autogenerated by Sphinx on Tue Jan 13 12:26:49 2026
# as part of the release process.
topics = {
@@ -888,8 +888,8 @@ Notes on using *__slots__*:
created for each of the iterator’s values. However, the *__slots__*
attribute will be an empty iterator.
-Changed in version 3.15.0a2 (unreleased): Allowed defining the
-*__dict__* and *__weakref__* *__slots__* for any class.
+Changed in version 3.15: Allowed defining the *__dict__* and
+*__weakref__* *__slots__* for any class.
''',
'attribute-references': r'''Attribute references
********************
@@ -4563,8 +4563,8 @@ commands [bpnumber]
To remove all commands from a breakpoint, type "commands" and
follow it immediately with "end"; that is, give no commands.
- With no *bpnumber* argument, "commands" refers to the last
- breakpoint set.
+ With no *bpnumber* argument, "commands" refers to the most recently
+ set breakpoint that still exists.
You can use breakpoint commands to start your program up again.
Simply use the "continue" command, or "step", or any other command
@@ -9032,8 +9032,8 @@ Notes on using *__slots__*:
created for each of the iterator’s values. However, the *__slots__*
attribute will be an empty iterator.
-Changed in version 3.15.0a2 (unreleased): Allowed defining the
-*__dict__* and *__weakref__* *__slots__* for any class.
+Changed in version 3.15: Allowed defining the *__dict__* and
+*__weakref__* *__slots__* for any class.
Customizing class creation
@@ -11466,8 +11466,11 @@ Any object can be tested for truth value, for use in an "if" or
By default, an object is considered true unless its class defines
either a "__bool__()" method that returns "False" or a "__len__()"
-method that returns zero, when called with the object. [1] Here are
-most of the built-in objects considered false:
+method that returns zero, when called with the object. [1] If one of
+the methods raises an exception when called, the exception is
+propagated and the object does not have a truth value (for example,
+"NotImplemented"). Here are most of the built-in objects considered
+false:
* constants defined to be false: "None" and "False"