From: Gregory P. Smith Date: Mon, 28 Aug 2017 20:43:26 +0000 (-0700) Subject: Fix a typo in the Programming FAQ. (#3230) X-Git-Tag: v3.7.0a1~210 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e9d978fd1bc122395efc91a82b16b2c4b968441d;p=python Fix a typo in the Programming FAQ. (#3230) subobjects, not subobjecs. --- diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index d9bdb21e79..1022373d38 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1638,7 +1638,7 @@ collected. Despite the cycle collector, it's still a good idea to define an explicit ``close()`` method on objects to be called whenever you're done with them. The -``close()`` method can then remove attributes that refer to subobjecs. Don't +``close()`` method can then remove attributes that refer to subobjects. Don't call :meth:`__del__` directly -- :meth:`__del__` should call ``close()`` and ``close()`` should make sure that it can be called more than once for the same object.