diff options
| author | Eric Snow <ericsnowcurrently@gmail.com> | 2024-04-02 23:16:50 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-02 23:16:50 (GMT) |
| commit | 857d3151c9efa029268e8249e91d26eb1b31c2fd (patch) | |
| tree | f2a6b3d675c1141dee34711334e483fac6b96aeb /Lib/test/test_interpreters/test_queues.py | |
| parent | f341d6017dd4e80509b69b5a9e2625b71b70f205 (diff) | |
| download | cpython-857d3151c9efa029268e8249e91d26eb1b31c2fd.zip cpython-857d3151c9efa029268e8249e91d26eb1b31c2fd.tar.gz cpython-857d3151c9efa029268e8249e91d26eb1b31c2fd.tar.bz2 | |
gh-76785: Consolidate Some Interpreter-related Testing Helpers (gh-117485)
This eliminates the duplication of functionally identical helpers in the _testinternalcapi and _xxsubinterpreters modules.
Diffstat (limited to 'Lib/test/test_interpreters/test_queues.py')
| -rw-r--r-- | Lib/test/test_interpreters/test_queues.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_interpreters/test_queues.py b/Lib/test/test_interpreters/test_queues.py index d16d294..8ab9ebb 100644 --- a/Lib/test/test_interpreters/test_queues.py +++ b/Lib/test/test_interpreters/test_queues.py @@ -28,9 +28,9 @@ class TestBase(_TestBase): class LowLevelTests(TestBase): - # The behaviors in the low-level module is important in as much - # as it is exercised by the high-level module. Therefore the - # most # important testing happens in the high-level tests. + # The behaviors in the low-level module are important in as much + # as they are exercised by the high-level module. Therefore the + # most important testing happens in the high-level tests. # These low-level tests cover corner cases that are not # encountered by the high-level module, thus they # mostly shouldn't matter as much. |
