diff options
author | Ethan Smith <ethan@ethanhs.me> | 2020-04-14 16:14:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 16:14:15 -0700 |
commit | d01628e411752ee6849f862cae66a1c69fe512b7 (patch) | |
tree | 4b6fc066cc0dc4c1aa2352896d81c0573e5a9138 /Lib/test/test_context.py | |
parent | 33986465bde2a2188537c4ef6cdb6055e348f31f (diff) | |
download | cpython-git-d01628e411752ee6849f862cae66a1c69fe512b7.tar.gz |
bpo-39481: PEP 585 for dataclasses, mailbox, contextvars (GH-19425)
Diffstat (limited to 'Lib/test/test_context.py')
-rw-r--r-- | Lib/test/test_context.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_context.py b/Lib/test/test_context.py index b9e991a400..2d8b63a1f5 100644 --- a/Lib/test/test_context.py +++ b/Lib/test/test_context.py @@ -358,10 +358,6 @@ class ContextTest(unittest.TestCase): tp.shutdown() self.assertEqual(results, list(range(10))) - def test_contextvar_getitem(self): - clss = contextvars.ContextVar - self.assertEqual(clss[str], clss) - # HAMT Tests |