diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-27 14:08:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-27 14:08:01 (GMT) |
commit | 43b068648e81d951f78d9f1cf1cd8f42731e164e (patch) | |
tree | 0273084c3e9fb5d29656265d0c59ccbccb73a99d /Lib/test/test_compile.py | |
parent | d408503b2c74b53f734adab6cd35866be460ce5e (diff) | |
download | cpython-43b068648e81d951f78d9f1cf1cd8f42731e164e.zip cpython-43b068648e81d951f78d9f1cf1cd8f42731e164e.tar.gz cpython-43b068648e81d951f78d9f1cf1cd8f42731e164e.tar.bz2 |
try to use the same str object for all code filenames when compiling or unmarshalling (#12190)
This should reduce memory usage.
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r-- | Lib/test/test_compile.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 58ef297..c5f9189 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -1,6 +1,7 @@ import unittest import sys import _ast +import types from test import support class TestSpecifics(unittest.TestCase): @@ -433,6 +434,14 @@ if 1: ast.body = [_ast.BoolOp()] self.assertRaises(TypeError, compile, ast, '<ast>', 'exec') + @support.cpython_only + def test_same_filename_used(self): + s = """def f(): pass\ndef g(): pass""" + c = compile(s, "myfile", "exec") + for obj in c.co_consts: + if isinstance(obj, types.CodeType): + self.assertIs(obj.co_filename, c.co_filename) + def test_main(): support.run_unittest(TestSpecifics) |