diff options
Diffstat (limited to 'Lib')
| -rw-r--r-- | Lib/pydoc_data/topics.py | 21 |
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" |
