diff options
author | Georg Brandl <georg@python.org> | 2010-06-27 10:57:33 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-06-27 10:57:33 (GMT) |
commit | 525201a08c82201d215ae2643d3b12d430bd9528 (patch) | |
tree | 06b426293a8b6cc60f822d213c8f53811d895004 /Doc | |
parent | a5bb2ca3234f4c3ecf505fe2e2ec65354e16619d (diff) | |
download | cpython-525201a08c82201d215ae2643d3b12d430bd9528.zip cpython-525201a08c82201d215ae2643d3b12d430bd9528.tar.gz cpython-525201a08c82201d215ae2643d3b12d430bd9528.tar.bz2 |
Fix duplicate paragraph.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/simple_stmts.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index b3fc891..531d69a 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -146,10 +146,6 @@ Assignment of an object to a single target is recursively defined as follows. * Otherwise: the name is bound to the object in the global namespace or the outer namespace determined by :keyword:`nonlocal`, respectively. - The name is rebound if it was already bound. This may cause the reference - count for the object previously bound to the name to reach zero, causing the - object to be deallocated and its destructor (if it has one) to be called. - .. index:: single: destructor The name is rebound if it was already bound. This may cause the reference count |