summaryrefslogtreecommitdiffstats
path: root/Doc/library/thread.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-05 19:28:16 (GMT)
committerGeorg Brandl <georg@python.org>2008-01-05 19:28:16 (GMT)
commit9749e15e2ff9fffd987679cc3914c726af8876b3 (patch)
treeacbbdcd3e421ab18ff2f8766574806d0f5e02d03 /Doc/library/thread.rst
parent9fcd8ceb74fec0b596ca266868d28955fa251ff1 (diff)
downloadcpython-9749e15e2ff9fffd987679cc3914c726af8876b3.zip
cpython-9749e15e2ff9fffd987679cc3914c726af8876b3.tar.gz
cpython-9749e15e2ff9fffd987679cc3914c726af8876b3.tar.bz2
Remove with_statement future imports from 2.6 docs.
Diffstat (limited to 'Doc/library/thread.rst')
-rw-r--r--Doc/library/thread.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/thread.rst b/Doc/library/thread.rst
index afe8cbe..b0e55ea 100644
--- a/Doc/library/thread.rst
+++ b/Doc/library/thread.rst
@@ -135,7 +135,6 @@ Lock objects have the following methods:
In addition to these methods, lock objects can also be used via the
:keyword:`with` statement, e.g.::
- from __future__ import with_statement
import thread
a_lock = thread.allocate_lock()