summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_threads.py
diff options
context:
space:
mode:
authorKyle Stanley <aeros167@gmail.com>2020-05-21 05:20:43 (GMT)
committerGitHub <noreply@github.com>2020-05-21 05:20:43 (GMT)
commit0f56263e62ba91d0baae40fb98947a3a98034a73 (patch)
tree54ead06a73b5ff9b9603c3d19bf39732401280c8 /Lib/test/test_asyncio/test_threads.py
parent7efb826c3e54edf10315e4baf5e96fe9a3729da4 (diff)
downloadcpython-0f56263e62ba91d0baae40fb98947a3a98034a73.zip
cpython-0f56263e62ba91d0baae40fb98947a3a98034a73.tar.gz
cpython-0f56263e62ba91d0baae40fb98947a3a98034a73.tar.bz2
bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278)
Allows contextvars from the main thread to be accessed in the separate thread used in `asyncio.to_thread()`. See the [discussion](https://github.com/python/cpython/pull/20143#discussion_r427808225) in GH-20143 for context. Automerge-Triggered-By: @aeros
Diffstat (limited to 'Lib/test/test_asyncio/test_threads.py')
-rw-r--r--Lib/test/test_asyncio/test_threads.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_threads.py b/Lib/test/test_asyncio/test_threads.py
index 99a00f2..2af3224 100644
--- a/Lib/test/test_asyncio/test_threads.py
+++ b/Lib/test/test_asyncio/test_threads.py
@@ -3,6 +3,7 @@
import asyncio
import unittest
+from contextvars import ContextVar
from unittest import mock
from test.test_asyncio import utils as test_utils
@@ -74,6 +75,19 @@ class ToThreadTests(test_utils.TestCase):
self.loop.run_until_complete(main())
func.assert_called_once_with('test', something=True)
+ def test_to_thread_contextvars(self):
+ test_ctx = ContextVar('test_ctx')
+
+ def get_ctx():
+ return test_ctx.get()
+
+ async def main():
+ test_ctx.set('parrot')
+ return await asyncio.to_thread(get_ctx)
+
+ result = self.loop.run_until_complete(main())
+ self.assertEqual(result, 'parrot')
+
if __name__ == "__main__":
unittest.main()