File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -222,12 +222,13 @@ Glossary
222
222
See :pep: `343 `.
223
223
224
224
context variable
225
- A variable which can have different values depending on it's context.
226
- This is similar to TLS(Thread Local Storage) in which each execution
227
- thread may have a different value for a variable. In case of context
228
- variable, there may be sevaral contexts in one execution thread and it is
229
- used to keep track of variables in concurrent asynchronous tasks.
230
- See `https://docs.python.org/3/library/contextvars.html `.
225
+ A variable which can have different values depending on its context.
226
+ This is similar to Thread-Local Storage in which each execution
227
+ thread may have a different value for a variable. However, with context
228
+ variables, there may be several contexts in one execution thread and the
229
+ main usage for context variables is to keep track of variables in
230
+ concurrent asynchronous tasks.
231
+ See :mod: `contextvars `.
231
232
232
233
contiguous
233
234
.. index :: C-contiguous, Fortran contiguous
You can’t perform that action at this time.
0 commit comments