]> granicus.if.org Git - python/commitdiff
#15865: merge with 3.2.
authorEzio Melotti <ezio.melotti@gmail.com>
Sat, 8 Sep 2012 17:49:18 +0000 (20:49 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sat, 8 Sep 2012 17:49:18 +0000 (20:49 +0300)
1  2 
Doc/library/nntplib.rst
Doc/library/threading.rst

Simple merge
index 275a578a77337f441e9aa3b0bf9d8c154eb1a623,43087ef153ad16af6393db043df125cc256f8535..7ab739b507936fe50174e8f7d86c1a333475e1db
@@@ -255,8 -255,7 +255,8 @@@ daemonic, and cannot be :meth:`~Thread.
  since it is impossible to detect the termination of alien threads.
  
  
- .. class:: Thread(group=None, target=None, name=None, args=(), kwargs={},
-                   verbose=None, *, daemon=None)
 -.. class:: Thread(group=None, target=None, name=None, args=(), kwargs={})
++.. class:: Thread(group=None, target=None, name=None, args=(), kwargs={}, *, \
++                  daemon=None)
  
     This constructor should always be called with keyword arguments.  Arguments
     are:
     *kwargs* is a dictionary of keyword arguments for the target invocation.
     Defaults to ``{}``.
  
-    *verbose* is a flag used for debugging messages.
 +   If not ``None``, *daemon* explicitly sets whether the thread is daemonic.
 +   If ``None`` (the default), the daemonic property is inherited from the
 +   current thread.
 +
     If the subclass overrides the constructor, it must make sure to invoke the
     base class constructor (``Thread.__init__()``) before doing anything else to
     the thread.