diff options
author | Michael Foord <michael@voidspace.org.uk> | 2011-12-18 22:09:27 (GMT) |
---|---|---|
committer | Michael Foord <michael@voidspace.org.uk> | 2011-12-18 22:09:27 (GMT) |
commit | a699a2d0c1a59aeaea47f50701c40a1cff18e4b6 (patch) | |
tree | 7acfe65f5a9da8efd6cd8b9b73b17a3c090fd953 /Lib/test/test_inspect.py | |
parent | 8f23be7189833ac0852cb5b0375241fbf7c48094 (diff) | |
parent | a51623b1602d6bb695fee36e74146269e6358d6b (diff) | |
download | cpython-a699a2d0c1a59aeaea47f50701c40a1cff18e4b6.zip cpython-a699a2d0c1a59aeaea47f50701c40a1cff18e4b6.tar.gz cpython-a699a2d0c1a59aeaea47f50701c40a1cff18e4b6.tar.bz2 |
Merge 3.2
Diffstat (limited to 'Lib/test/test_inspect.py')
-rw-r--r-- | Lib/test/test_inspect.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 06132f2..7163103 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -1004,6 +1004,11 @@ class TestGetattrStatic(unittest.TestCase): self.assertEqual(inspect.getattr_static(instance, "spam"), 42) self.assertFalse(Thing.executed) + def test_module(self): + sentinel = object() + self.assertIsNot(inspect.getattr_static(sys, "version", sentinel), + sentinel) + class TestGetGeneratorState(unittest.TestCase): def setUp(self): |