We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca5649c commit 9412f4dCopy full SHA for 9412f4d
Doc/faq/programming.rst
@@ -1494,8 +1494,8 @@ to uppercase::
1494
1495
Here the ``UpperOut`` class redefines the ``write()`` method to convert the
1496
argument string to uppercase before calling the underlying
1497
-``self.__outfile.write()`` method. All other methods are delegated to the
1498
-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
1499
``__getattr__`` method; consult :ref:`the language reference <attribute-access>`
1500
for more information about controlling attribute access.
1501
0 commit comments