diff options
author | Gregory P. Smith <greg@krypto.org> | 2017-09-03 20:29:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-03 20:29:34 (GMT) |
commit | d4097353baf7c3f2679f68679e36f2b3fd56c3f5 (patch) | |
tree | 7dc3c0dcda0d748ff30a6b9ab0b64bcc7a15c1d6 /Doc | |
parent | 5cbca0235b8da07c9454bcaa94f12d59c2df0ad2 (diff) | |
download | cpython-d4097353baf7c3f2679f68679e36f2b3fd56c3f5.zip cpython-d4097353baf7c3f2679f68679e36f2b3fd56c3f5.tar.gz cpython-d4097353baf7c3f2679f68679e36f2b3fd56c3f5.tar.bz2 |
[3.6] Fix a typo in the Programming FAQ. (GH-3230) (#3273)
subobjects, not subobjecs.
(cherry picked from commit e9d978fd1bc122395efc91a82b16b2c4b968441d)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/faq/programming.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 9c5e20d..7476ce1 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. |