Python: Fix "be be" typos in qhelp

This commit is contained in:
Henry Mercer
2025-10-14 11:33:24 +01:00
parent 5310469d69
commit b737bccb07
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ If a superclass finalizer is called multiple times, this may lead to errors such
cleaned up properly as expected.
</p>
<p>There are a number of ways that a <code>__del__</code> method may be be called more than once.</p>
<p>There are a number of ways that a <code>__del__</code> method may be called more than once.</p>
<ul>
<li>There may be more than one explicit call to the method in the hierarchy of <code>__del__</code> methods.</li>
<li>In situations involving multiple inheritance, an finalization method may call the finalizers of each of its base types,

View File

@@ -16,7 +16,7 @@ that it could be called multiple times. For example, it may set attributes to a
values setting those attributes in a subclass.
</p>
<p>There are a number of ways that an <code>__init__</code> method may be be called more than once.</p>
<p>There are a number of ways that an <code>__init__</code> method may be called more than once.</p>
<ul>
<li>There may be more than one explicit call to the method in the hierarchy of <code>__init__</code> methods.</li>
<li>In situations involving multiple inheritance, an initialization method may call the initializers of each of its base types,