[Python-checkins] [3.6] Fix a typo in the Programming FAQ. (GH-3230) (#3273)

Gregory P. Smith webhook-mailer at python.org
Sun Sep 3 16:29:37 EDT 2017


https://github.com/python/cpython/commit/d4097353baf7c3f2679f68679e36f2b3fd56c3f5
commit: d4097353baf7c3f2679f68679e36f2b3fd56c3f5
branch: 3.6
author: Gregory P. Smith <greg at krypto.org>
committer: GitHub <noreply at github.com>
date: 2017-09-03T13:29:34-07:00
summary:

[3.6] Fix a typo in the Programming FAQ. (GH-3230) (#3273)

subobjects, not subobjecs.
(cherry picked from commit e9d978fd1bc122395efc91a82b16b2c4b968441d)

files:
M Doc/faq/programming.rst

diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 9c5e20dcadf..7476ce11f4f 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.



More information about the Python-checkins mailing list