We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70ba814 commit 25def5fCopy full SHA for 25def5f
Doc/faq/programming.rst
@@ -1501,8 +1501,8 @@ to uppercase::
1501
1502
Here the ``UpperOut`` class redefines the ``write()`` method to convert the
1503
argument string to uppercase before calling the underlying
1504
-``self.__outfile.write()`` method. All other methods are delegated to the
1505
-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
1506
``__getattr__`` method; consult :ref:`the language reference <attribute-access>`
1507
for more information about controlling attribute access.
1508
0 commit comments