@@ -272,7 +272,7 @@ The instance's values will be different for separate threads.
272
272
A class that represents thread-local data.
273
273
274
274
For more details and extensive examples, see the documentation string of the
275
- :mod: `_threading_local ` module: :source: `Lib/_threading_local.py `.
275
+ :mod: `! _threading_local ` module: :source: `Lib/_threading_local.py `.
276
276
277
277
278
278
.. _thread-objects :
@@ -285,7 +285,7 @@ thread of control. There are two ways to specify the activity: by passing a
285
285
callable object to the constructor, or by overriding the :meth: `~Thread.run `
286
286
method in a subclass. No other methods (except for the constructor) should be
287
287
overridden in a subclass. In other words, *only * override the
288
- :meth: ` ~Thread. __init__ ` and :meth: `~Thread.run ` methods of this class.
288
+ `` __init__() ` ` and :meth: `~Thread.run ` methods of this class.
289
289
290
290
Once a thread object is created, its activity must be started by calling the
291
291
thread's :meth: `~Thread.start ` method. This invokes the :meth: `~Thread.run `
@@ -337,7 +337,7 @@ since it is impossible to detect the termination of alien threads.
337
337
are:
338
338
339
339
*group * should be ``None ``; reserved for future extension when a
340
- :class: `ThreadGroup ` class is implemented.
340
+ :class: `! ThreadGroup ` class is implemented.
341
341
342
342
*target * is the callable object to be invoked by the :meth: `run ` method.
343
343
Defaults to ``None ``, meaning nothing is called.
@@ -1009,7 +1009,7 @@ This class represents an action that should be run only after a certain amount
1009
1009
of time has passed --- a timer. :class: `Timer ` is a subclass of :class: `Thread `
1010
1010
and as such also functions as an example of creating custom threads.
1011
1011
1012
- Timers are started, as with threads, by calling their :meth: `~ Timer.start `
1012
+ Timers are started, as with threads, by calling their :meth: `Timer.start <Thread.start> `
1013
1013
method. The timer can be stopped (before its action has begun) by calling the
1014
1014
:meth: `~Timer.cancel ` method. The interval the timer will wait before
1015
1015
executing its action may not be exactly the same as the interval specified by
@@ -1147,10 +1147,10 @@ As an example, here is a simple way to synchronize a client and server thread::
1147
1147
Using locks, conditions, and semaphores in the :keyword: `!with ` statement
1148
1148
-------------------------------------------------------------------------
1149
1149
1150
- All of the objects provided by this module that have :meth: ` acquire ` and
1151
- :meth: ` release ` methods can be used as context managers for a :keyword: `with `
1152
- statement. The :meth: ` acquire ` method will be called when the block is
1153
- entered, and :meth: ` release ` will be called when the block is exited. Hence,
1150
+ All of the objects provided by this module that have `` acquire ` ` and
1151
+ `` release ` ` methods can be used as context managers for a :keyword: `with `
1152
+ statement. The `` acquire ` ` method will be called when the block is
1153
+ entered, and `` release ` ` will be called when the block is exited. Hence,
1154
1154
the following snippet::
1155
1155
1156
1156
with some_lock:
0 commit comments