From ee81395330c4c711c8a67f9831887d6b9eb7b1d3 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Sun, 29 Oct 2023 13:01:44 +0900 Subject: [PATCH] update supported types in test --- Lib/test/test_interpreters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_interpreters.py b/Lib/test/test_interpreters.py index e124a7cc7259a2..bcd88d773299ad 100644 --- a/Lib/test/test_interpreters.py +++ b/Lib/test/test_interpreters.py @@ -778,6 +778,8 @@ def test_default_shareables(self): 'spam', 10, -10, + True, + False, ] for obj in shareables: with self.subTest(obj): @@ -796,8 +798,6 @@ class SubBytes(bytes): not_shareables = [ # singletons - True, - False, NotImplemented, ..., # builtin types and objects