Kaydet (Commit) 7a72b3ad authored tarafından Georg Brandl's avatar Georg Brandl

Recorded merge of revisions 74210 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74210 | georg.brandl | 2009-07-26 16:44:23 +0200 (So, 26 Jul 2009) | 1 line

  Move member descriptions inside the classes.
........
üst 6730538e
:mod:`threading` --- Higher-level threading interface :mod:`threading` --- Higher-level threading interface
===================================================== =====================================================
...@@ -213,7 +212,8 @@ impossible to detect the termination of alien threads. ...@@ -213,7 +212,8 @@ impossible to detect the termination of alien threads.
.. class:: Thread(group=None, target=None, name=None, args=(), kwargs={}) .. class:: Thread(group=None, target=None, name=None, args=(), kwargs={})
This constructor should always be called with keyword arguments. Arguments are: This constructor should always be called with keyword arguments. Arguments
are:
*group* should be ``None``; reserved for future extension when a *group* should be ``None``; reserved for future extension when a
:class:`ThreadGroup` class is implemented. :class:`ThreadGroup` class is implemented.
...@@ -221,54 +221,51 @@ impossible to detect the termination of alien threads. ...@@ -221,54 +221,51 @@ impossible to detect the termination of alien threads.
*target* is the callable object to be invoked by the :meth:`run` method. *target* is the callable object to be invoked by the :meth:`run` method.
Defaults to ``None``, meaning nothing is called. Defaults to ``None``, meaning nothing is called.
*name* is the thread name. By default, a unique name is constructed of the form *name* is the thread name. By default, a unique name is constructed of the
"Thread-*N*" where *N* is a small decimal number. form "Thread-*N*" where *N* is a small decimal number.
*args* is the argument tuple for the target invocation. Defaults to ``()``. *args* is the argument tuple for the target invocation. Defaults to ``()``.
*kwargs* is a dictionary of keyword arguments for the target invocation. *kwargs* is a dictionary of keyword arguments for the target invocation.
Defaults to ``{}``. Defaults to ``{}``.
If the subclass overrides the constructor, it must make sure to invoke the base If the subclass overrides the constructor, it must make sure to invoke the
class constructor (``Thread.__init__()``) before doing anything else to the base class constructor (``Thread.__init__()``) before doing anything else to
thread. the thread.
.. method:: Thread.start() .. method:: start()
Start the thread's activity. Start the thread's activity.
It must be called at most once per thread object. It arranges for the object's It must be called at most once per thread object. It arranges for the
:meth:`run` method to be invoked in a separate thread of control. object's :meth:`run` method to be invoked in a separate thread of control.
This method will raise a :exc:`RuntimeException` if called more than once on the
same thread object.
This method will raise a :exc:`RuntimeException` if called more than once
on the same thread object.
.. method:: Thread.run() .. method:: run()
Method representing the thread's activity. Method representing the thread's activity.
You may override this method in a subclass. The standard :meth:`run` method You may override this method in a subclass. The standard :meth:`run`
invokes the callable object passed to the object's constructor as the *target* method invokes the callable object passed to the object's constructor as
argument, if any, with sequential and keyword arguments taken from the *args* the *target* argument, if any, with sequential and keyword arguments taken
and *kwargs* arguments, respectively. from the *args* and *kwargs* arguments, respectively.
.. method:: join([timeout])
.. method:: Thread.join([timeout])
Wait until the thread terminates. This blocks the calling thread until the Wait until the thread terminates. This blocks the calling thread until the
thread whose :meth:`join` method is called terminates -- either normally or thread whose :meth:`join` method is called terminates -- either normally
through an unhandled exception -- or until the optional timeout occurs. or through an unhandled exception -- or until the optional timeout occurs.
When the *timeout* argument is present and not ``None``, it should be a floating When the *timeout* argument is present and not ``None``, it should be a
point number specifying a timeout for the operation in seconds (or fractions floating point number specifying a timeout for the operation in seconds
thereof). As :meth:`join` always returns ``None``, you must call :meth:`is_alive` (or fractions thereof). As :meth:`join` always returns ``None``, you must
after :meth:`join` to decide whether a timeout happened -- if the thread is call :meth:`is_alive` after :meth:`join` to decide whether a timeout
still alive, the :meth:`join` call timed out. happened -- if the thread is still alive, the :meth:`join` call timed out.
When the *timeout* argument is not present or ``None``, the operation will block When the *timeout* argument is not present or ``None``, the operation will
until the thread terminates. block until the thread terminates.
A thread can be :meth:`join`\ ed many times. A thread can be :meth:`join`\ ed many times.
...@@ -277,52 +274,47 @@ impossible to detect the termination of alien threads. ...@@ -277,52 +274,47 @@ impossible to detect the termination of alien threads.
:meth:`join` a thread before it has been started and attempts to do so :meth:`join` a thread before it has been started and attempts to do so
raises the same exception. raises the same exception.
.. attribute:: name
.. attribute:: Thread.name
A string used for identification purposes only. It has no semantics. A string used for identification purposes only. It has no semantics.
Multiple threads may be given the same name. The initial name is set by the Multiple threads may be given the same name. The initial name is set by
constructor. the constructor.
.. method:: Thread.getName() .. method:: getName()
Thread.setName() setName()
Old getter/setter API for :attr:`~Thread.name`; use it directly as a property Old getter/setter API for :attr:`~Thread.name`; use it directly as a
instead. property instead.
.. attribute:: Thread.ident
The 'thread identifier' of this thread or ``None`` if the thread has not been .. attribute:: ident
started. This is a nonzero integer. See the :func:`thread.get_ident()`
function. Thread identifiers may be recycled when a thread exits and another
thread is created. The identifier is available even after the thread has
exited.
The 'thread identifier' of this thread or ``None`` if the thread has not
been started. This is a nonzero integer. See the
:func:`thread.get_ident()` function. Thread identifiers may be recycled
when a thread exits and another thread is created. The identifier is
available even after the thread has exited.
.. method:: Thread.is_alive() .. method:: is_alive()
Return whether the thread is alive. Return whether the thread is alive.
Roughly, a thread is alive from the moment the :meth:`start` method returns Roughly, a thread is alive from the moment the :meth:`start` method
until its :meth:`run` method terminates. The module function :func:`enumerate` returns until its :meth:`run` method terminates. The module function
returns a list of all alive threads. :func:`enumerate` returns a list of all alive threads.
.. attribute:: daemon
.. attribute:: Thread.daemon A boolean value indicating whether this thread is a daemon thread (True)
or not (False). This must be set before :meth:`start` is called,
A boolean value indicating whether this thread is a daemon thread (True) or otherwise :exc:`RuntimeError` is raised. Its initial value is inherited
not (False). This must be set before :meth:`start` is called, otherwise from the creating thread; the main thread is not a daemon thread and
:exc:`RuntimeError` is raised. Its initial value is inherited from the therefore all threads created in the main thread default to :attr:`daemon`
creating thread; the main thread is not a daemon thread and therefore all = ``False``.
threads created in the main thread default to :attr:`daemon` = ``False``.
The entire Python program exits when no alive non-daemon threads are left. The entire Python program exits when no alive non-daemon threads are left.
.. method:: isDaemon()
.. method:: Thread.isDaemon() setDaemon()
Thread.setDaemon()
Old getter/setter API for :attr:`~Thread.daemon`; use it directly as a Old getter/setter API for :attr:`~Thread.daemon`; use it directly as a
property instead. property instead.
...@@ -496,68 +488,65 @@ needs to wake up one consumer thread. ...@@ -496,68 +488,65 @@ needs to wake up one consumer thread.
.. class:: Condition([lock]) .. class:: Condition([lock])
If the *lock* argument is given and not ``None``, it must be a :class:`Lock` or If the *lock* argument is given and not ``None``, it must be a :class:`Lock`
:class:`RLock` object, and it is used as the underlying lock. Otherwise, a new or :class:`RLock` object, and it is used as the underlying lock. Otherwise,
:class:`RLock` object is created and used as the underlying lock. a new :class:`RLock` object is created and used as the underlying lock.
.. method:: Condition.acquire(*args) .. method:: acquire(*args)
Acquire the underlying lock. This method calls the corresponding method on the Acquire the underlying lock. This method calls the corresponding method on
underlying lock; the return value is whatever that method returns. the underlying lock; the return value is whatever that method returns.
.. method:: release()
.. method:: Condition.release() Release the underlying lock. This method calls the corresponding method on
the underlying lock; there is no return value.
Release the underlying lock. This method calls the corresponding method on the .. method:: wait([timeout])
underlying lock; there is no return value.
Wait until notified or until a timeout occurs. If the calling thread has
not acquired the lock when this method is called, a :exc:`RuntimeError` is
raised.
.. method:: Condition.wait([timeout]) This method releases the underlying lock, and then blocks until it is
awakened by a :meth:`notify` or :meth:`notify_all` call for the same
Wait until notified or until a timeout occurs. If the calling thread has not condition variable in another thread, or until the optional timeout
acquired the lock when this method is called, a :exc:`RuntimeError` is raised. occurs. Once awakened or timed out, it re-acquires the lock and returns.
This method releases the underlying lock, and then blocks until it is awakened
by a :meth:`notify` or :meth:`notify_all` call for the same condition variable in
another thread, or until the optional timeout occurs. Once awakened or timed
out, it re-acquires the lock and returns.
When the *timeout* argument is present and not ``None``, it should be a floating
point number specifying a timeout for the operation in seconds (or fractions
thereof).
When the underlying lock is an :class:`RLock`, it is not released using its When the *timeout* argument is present and not ``None``, it should be a
:meth:`release` method, since this may not actually unlock the lock when it was floating point number specifying a timeout for the operation in seconds
acquired multiple times recursively. Instead, an internal interface of the (or fractions thereof).
:class:`RLock` class is used, which really unlocks it even when it has been
recursively acquired several times. Another internal interface is then used to
restore the recursion level when the lock is reacquired.
When the underlying lock is an :class:`RLock`, it is not released using
its :meth:`release` method, since this may not actually unlock the lock
when it was acquired multiple times recursively. Instead, an internal
interface of the :class:`RLock` class is used, which really unlocks it
even when it has been recursively acquired several times. Another internal
interface is then used to restore the recursion level when the lock is
reacquired.
.. method:: Condition.notify() .. method:: notify()
Wake up a thread waiting on this condition, if any. If the calling thread Wake up a thread waiting on this condition, if any. If the calling thread
has not acquired the lock when this method is called, a :exc:`RuntimeError` has not acquired the lock when this method is called, a
is raised. :exc:`RuntimeError` is raised.
This method wakes up one of the threads waiting for the condition variable,
if any are waiting; it is a no-op if no threads are waiting.
The current implementation wakes up exactly one thread, if any are waiting. This method wakes up one of the threads waiting for the condition
However, it's not safe to rely on this behavior. A future, optimized variable, if any are waiting; it is a no-op if no threads are waiting.
implementation may occasionally wake up more than one thread.
Note: the awakened thread does not actually return from its :meth:`wait` call The current implementation wakes up exactly one thread, if any are
until it can reacquire the lock. Since :meth:`notify` does not release the waiting. However, it's not safe to rely on this behavior. A future,
lock, its caller should. optimized implementation may occasionally wake up more than one thread.
Note: the awakened thread does not actually return from its :meth:`wait`
call until it can reacquire the lock. Since :meth:`notify` does not
release the lock, its caller should.
.. method:: Condition.notify_all() .. method:: notify_all()
Wake up all threads waiting on this condition. This method acts like Wake up all threads waiting on this condition. This method acts like
:meth:`notify`, but wakes up all waiting threads instead of one. If the calling :meth:`notify`, but wakes up all waiting threads instead of one. If the
thread has not acquired the lock when this method is called, a calling thread has not acquired the lock when this method is called, a
:exc:`RuntimeError` is raised. :exc:`RuntimeError` is raised.
...@@ -582,33 +571,31 @@ waiting until some other thread calls :meth:`release`. ...@@ -582,33 +571,31 @@ waiting until some other thread calls :meth:`release`.
defaults to ``1``. If the *value* given is less than 0, :exc:`ValueError` is defaults to ``1``. If the *value* given is less than 0, :exc:`ValueError` is
raised. raised.
.. method:: acquire([blocking])
.. method:: Semaphore.acquire([blocking])
Acquire a semaphore. Acquire a semaphore.
When invoked without arguments: if the internal counter is larger than zero on When invoked without arguments: if the internal counter is larger than
entry, decrement it by one and return immediately. If it is zero on entry, zero on entry, decrement it by one and return immediately. If it is zero
block, waiting until some other thread has called :meth:`release` to make it on entry, block, waiting until some other thread has called
larger than zero. This is done with proper interlocking so that if multiple :meth:`release` to make it larger than zero. This is done with proper
:meth:`acquire` calls are blocked, :meth:`release` will wake exactly one of them interlocking so that if multiple :meth:`acquire` calls are blocked,
up. The implementation may pick one at random, so the order in which blocked :meth:`release` will wake exactly one of them up. The implementation may
threads are awakened should not be relied on. There is no return value in this pick one at random, so the order in which blocked threads are awakened
case. should not be relied on. There is no return value in this case.
When invoked with *blocking* set to true, do the same thing as when called When invoked with *blocking* set to true, do the same thing as when called
without arguments, and return true. without arguments, and return true.
When invoked with *blocking* set to false, do not block. If a call without an When invoked with *blocking* set to false, do not block. If a call
argument would block, return false immediately; otherwise, do the same thing as without an argument would block, return false immediately; otherwise, do
when called without arguments, and return true. the same thing as when called without arguments, and return true.
.. method:: release()
.. method:: Semaphore.release() Release a semaphore, incrementing the internal counter by one. When it
was zero on entry and another thread is waiting for it to become larger
Release a semaphore, incrementing the internal counter by one. When it was zero than zero again, wake up that thread.
on entry and another thread is waiting for it to become larger than zero again,
wake up that thread.
.. _semaphore-examples: .. _semaphore-examples:
...@@ -655,34 +642,31 @@ An event object manages an internal flag that can be set to true with the ...@@ -655,34 +642,31 @@ An event object manages an internal flag that can be set to true with the
The internal flag is initially false. The internal flag is initially false.
.. method:: is_set()
.. method:: Event.is_set()
Return true if and only if the internal flag is true. Return true if and only if the internal flag is true.
.. method:: set()
.. method:: Event.set() Set the internal flag to true. All threads waiting for it to become true
are awakened. Threads that call :meth:`wait` once the flag is true will
Set the internal flag to true. All threads waiting for it to become true are not block at all.
awakened. Threads that call :meth:`wait` once the flag is true will not block at
all.
.. method:: clear()
.. method:: Event.clear() Reset the internal flag to false. Subsequently, threads calling
:meth:`wait` will block until :meth:`set` is called to set the internal
flag to true again.
Reset the internal flag to false. Subsequently, threads calling :meth:`wait` .. method:: wait([timeout])
will block until :meth:`set` is called to set the internal flag to true again.
Block until the internal flag is true. If the internal flag is true on
entry, return immediately. Otherwise, block until another thread calls
:meth:`set` to set the flag to true, or until the optional timeout occurs.
.. method:: Event.wait([timeout]) When the timeout argument is present and not ``None``, it should be a
floating point number specifying a timeout for the operation in seconds
Block until the internal flag is true. If the internal flag is true on entry, (or fractions thereof).
return immediately. Otherwise, block until another thread calls :meth:`set`
to set the flag to true, or until the optional timeout occurs.
When the timeout argument is present and not ``None``, it should be a floating
point number specifying a timeout for the operation in seconds (or fractions
thereof).
This method returns the internal flag on exit, so it will always return This method returns the internal flag on exit, so it will always return
``True`` except if a timeout is given and the operation times out. ``True`` except if a timeout is given and the operation times out.
...@@ -719,11 +703,10 @@ For example:: ...@@ -719,11 +703,10 @@ For example::
Create a timer that will run *function* with arguments *args* and keyword Create a timer that will run *function* with arguments *args* and keyword
arguments *kwargs*, after *interval* seconds have passed. arguments *kwargs*, after *interval* seconds have passed.
.. method:: cancel()
.. method:: Timer.cancel() Stop the timer, and cancel the execution of the timer's action. This will
only work if the timer is still in its waiting stage.
Stop the timer, and cancel the execution of the timer's action. This will only
work if the timer is still in its waiting stage.
.. _with-locks: .. _with-locks:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment