]> granicus.if.org Git - python/commitdiff
Properly test the various builtins lookup cases in inspect.getclosurevars
authorNick Coghlan <ncoghlan@gmail.com>
Sat, 23 Jun 2012 10:07:39 +0000 (20:07 +1000)
committerNick Coghlan <ncoghlan@gmail.com>
Sat, 23 Jun 2012 10:07:39 +0000 (20:07 +1000)
Lib/test/test_inspect.py

index 9d971e055e3f5b10ec72112174797a70878b87cb..7ed4ffef8c6430bde3e80bd9da3c1d52f8b95db8 100644 (file)
@@ -763,6 +763,30 @@ class TestGetClosureVars(unittest.TestCase):
         self.assertRaises(TypeError, inspect.getclosurevars, list)
         self.assertRaises(TypeError, inspect.getclosurevars, {})
 
+    def _private_globals(self):
+        code = """def f(): print(path)"""
+        ns = {}
+        exec(code, ns)
+        return ns["f"], ns
+
+    def test_builtins_fallback(self):
+        f, ns = self._private_globals()
+        ns.pop("__builtins__", None)
+        expected = inspect.ClosureVars({}, {}, {"print":print}, {"path"})
+        self.assertEqual(inspect.getclosurevars(f), expected)
+
+    def test_builtins_as_dict(self):
+        f, ns = self._private_globals()
+        ns["__builtins__"] = {"path":1}
+        expected = inspect.ClosureVars({}, {}, {"path":1}, {"print"})
+        self.assertEqual(inspect.getclosurevars(f), expected)
+
+    def test_builtins_as_module(self):
+        f, ns = self._private_globals()
+        ns["__builtins__"] = os
+        expected = inspect.ClosureVars({}, {}, {"path":os.path}, {"print"})
+        self.assertEqual(inspect.getclosurevars(f), expected)
+
 
 class TestGetcallargsFunctions(unittest.TestCase):