We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b54e46c commit caf1aadCopy full SHA for caf1aad
Doc/faq/programming.rst
@@ -1495,8 +1495,8 @@ to uppercase::
1495
1496
Here the ``UpperOut`` class redefines the ``write()`` method to convert the
1497
argument string to uppercase before calling the underlying
1498
-``self.__outfile.write()`` method. All other methods are delegated to the
1499
-underlying ``self.__outfile`` object. The delegation is accomplished via the
+``self._outfile.write()`` method. All other methods are delegated to the
+underlying ``self._outfile`` object. The delegation is accomplished via the
1500
``__getattr__`` method; consult :ref:`the language reference <attribute-access>`
1501
for more information about controlling attribute access.
1502
0 commit comments