commit | e047d7953f0ff940bcd10737204a44f42929dc82 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Oct 20 03:14:10 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Oct 20 03:14:10 2009 +0000 |
tree | f086de9a0d399331b7759fb444c2f4b410928c8b | |
parent | e089980cf3215cc96ca7af058d7d6744d77cde28 [diff] |
use property api
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index ea579f9..65b16a3 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst
@@ -183,7 +183,7 @@ q = Queue() for i in range(num_worker_threads): t = Thread(target=worker) - t.setDaemon(True) + t.daemon = True t.start() for item in source():