diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-12 18:19:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-12 18:19:19 (GMT) |
commit | f28fcff17d9f777eab52126a9c8a984cac17a9ec (patch) | |
tree | da466e7b119ec42717c022d8cd09fc630989d334 | |
parent | 518cf94ad79503fb16475ccc29592b390e7b19da (diff) | |
download | cpython-f28fcff17d9f777eab52126a9c8a984cac17a9ec.zip cpython-f28fcff17d9f777eab52126a9c8a984cac17a9ec.tar.gz cpython-f28fcff17d9f777eab52126a9c8a984cac17a9ec.tar.bz2 |
adjust for change in AST type
-rw-r--r-- | Lib/test/test_sys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 551c3a5..9f6af7f 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -882,7 +882,7 @@ class SizeofTest(unittest.TestCase): check = self.check_sizeof # _ast.AST import _ast - check(_ast.AST(), size(h + '')) + check(_ast.AST(), size(h + 'P')) # imp.NullImporter import imp check(imp.NullImporter(self.file.name), size(h + '')) |