Skip to content

Commit c250bcd

Browse files
committed
Address feedback
1 parent 52f92b5 commit c250bcd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Doc/library/threading.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,7 @@ You can also access the :class:`local`-object's dictionary::
278278
>>> mydata.widgets
279279
[]
280280

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::
281+
If we access the data in a different thread::
283282

284283
>>> log = []
285284
>>> def f():
@@ -296,7 +295,7 @@ local to a thread. If we access the data in a different thread::
296295
[[], 11]
297296

298297
we get different data. Furthermore, changes made in the other thread
299-
don't affect data seen in this thread:
298+
don't affect data seen in this thread::
300299

301300
>>> mydata.number
302301
42

0 commit comments

Comments
 (0)