diff options
| author | Benjamin Peterson <benjamin@python.org> | 2009-10-15 15:44:46 (GMT) | 
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2009-10-15 15:44:46 (GMT) | 
| commit | 196b0925ca55bf22ffbb97733cff3e63d4fb6e18 (patch) | |
| tree | c546b34790bc5d6b122a7213886579fbad62c1b7 /Lib | |
| parent | 96e319e5ac93c7342ca3edd2322dad688199fac6 (diff) | |
| download | cpython-196b0925ca55bf22ffbb97733cff3e63d4fb6e18.zip cpython-196b0925ca55bf22ffbb97733cff3e63d4fb6e18.tar.gz cpython-196b0925ca55bf22ffbb97733cff3e63d4fb6e18.tar.bz2  | |
only clear a module's __dict__ if the module is the only one with a reference to it #7140
Diffstat (limited to 'Lib')
| -rw-r--r-- | Lib/test/test_module.py | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_module.py b/Lib/test/test_module.py index 80d440d..638f55b 100644 --- a/Lib/test/test_module.py +++ b/Lib/test/test_module.py @@ -55,6 +55,14 @@ class ModuleTests(unittest.TestCase):                {"__name__": "foo", "__doc__": "foodoc", "bar": 42})          self.assertTrue(foo.__dict__ is d) +    def test_dont_clear_dict(self): +        # See issue 7140. +        def f(): +            foo = ModuleType("foo") +            foo.bar = 4 +            return foo +        self.assertEqual(f().__dict__["bar"], 4) +  def test_main():      run_unittest(ModuleTests)  | 
