File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ modify this value. This results in resources whose values become
277
277
time-dependent on the execution order. This is a problem, and in
278
278
general one should very much try to avoid race conditions since
279
279
they result program behavior which is globally
280
- non-deterministic.*
280
+ non-deterministic.
281
281
282
282
The best approach to this is to simply avoid all global state all
283
283
times. Global state and import-time side effects will always come
@@ -319,7 +319,7 @@ gevent.joinall(threads)
319
319
[[[ end]]]
320
320
321
321
In addition to using the base Greenlet class, you may also subclass
322
- Greenlet class and overload the `` _run `` method.
322
+ Greenlet class and override the `` _run `` method.
323
323
324
324
[[[ cog
325
325
import gevent
@@ -452,7 +452,7 @@ except Timeout:
452
452
</code >
453
453
</pre >
454
454
455
- Or with a context manager in a `` with `` a statement.
455
+ Or with a context manager in a `` with `` statement.
456
456
457
457
<pre >
458
458
<code class =" python " >import gevent
You can’t perform that action at this time.
0 commit comments