dont_immortalize() 1832 1833 def test_lru_cache_weakrefable(self): 1833 1834 @self.module.lru_cache 1834 1835 def test_function(x): Lib/test/test_module.py +3-1 Original file line numberDiff line numberDiff line change @@ -1,7 +1,7 @@ 1 1 # Test the module type 2...