diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-02-25 20:55:47 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-02-25 20:55:47 (GMT) |
commit | 221085de89afa861c49ff4306979dbbad949d393 (patch) | |
tree | 3e79f6c14311cba733d5f8d1a1e2c227d238fd51 /Lib/test/test_compile.py | |
parent | 27d517b21b67b54637acd19785f7adfc38fbd8c2 (diff) | |
download | cpython-221085de89afa861c49ff4306979dbbad949d393.zip cpython-221085de89afa861c49ff4306979dbbad949d393.tar.gz cpython-221085de89afa861c49ff4306979dbbad949d393.tar.bz2 |
Change all the function attributes from func_* -> __*__. This gets rid
of func_name, func_dict and func_doc as they already exist as __name__,
__dict__ and __doc__.
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r-- | Lib/test/test_compile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 1acb4a1..022f7c0 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -235,7 +235,7 @@ if 1: g = +9223372036854775807 # 1 << 63 - 1 h = -9223372036854775807 # 1 << 63 - 1 - for variable in self.test_32_63_bit_values.func_code.co_consts: + for variable in self.test_32_63_bit_values.__code__.co_consts: if variable is not None: self.assertTrue(isinstance(variable, int)) @@ -315,7 +315,7 @@ if 1: f2 = lambda x=2: x return f1, f2 f1, f2 = f() - self.assertNotEqual(id(f1.func_code), id(f2.func_code)) + self.assertNotEqual(id(f1.__code__), id(f2.__code__)) def test_unicode_encoding(self): code = u"# -*- coding: utf-8 -*-\npass\n" |