We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52f92b5 commit c250bcdCopy full SHA for c250bcd
Doc/library/threading.rst
@@ -278,8 +278,7 @@ You can also access the :class:`local`-object's dictionary::
278
>>> mydata.widgets
279
[]
280
281
-What's important about thread-local objects is that their data are
282
-local to a thread. If we access the data in a different thread::
+If we access the data in a different thread::
283
284
>>> log = []
285
>>> def f():
@@ -296,7 +295,7 @@ local to a thread. If we access the data in a different thread::
296
295
[[], 11]
297
298
we get different data. Furthermore, changes made in the other thread
299
-don't affect data seen in this thread:
+don't affect data seen in this thread::
300
301
>>> mydata.number
302
42
0 commit comments