https://github.com/python/cpython/commit/73d03005b028eb6e4d1a643f3ca7a1f5ff2040fc
commit: 73d03005b028eb6e4d1a643f3ca7a1f5ff2040fc
branch: main
author: Tomas R. <[email protected]>
committer: sobolevn <[email protected]>
date: 2025-02-16T16:34:54+03:00
summary:

gh-130185: Fix unintentionally skipped tests in `test_functools` (#130186)

files:
M Lib/test/test_functools.py

diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py
index 1b7a76bec839bf..b66c9e860460f7 100644
--- a/Lib/test/test_functools.py
+++ b/Lib/test/test_functools.py
@@ -1490,6 +1490,16 @@ def fib(n):
             self.module._CacheInfo(hits=0, misses=0, maxsize=None, currsize=0))
 
 
+class TestCachePy(TestCache, unittest.TestCase):
+    module = py_functools
+
+
[email protected](c_functools, 'requires the C _functools module')
+class TestCacheC(TestCache, unittest.TestCase):
+    if c_functools:
+        module = c_functools
+
+
 class TestLRU:
 
     def test_lru(self):

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to