From: Benjamin Peterson Date: Mon, 12 Mar 2012 18:19:19 +0000 (-0700) Subject: adjust for change in AST type X-Git-Tag: v3.3.0a2~234^2~10^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f28fcff17d9f777eab52126a9c8a984cac17a9ec;p=python adjust for change in AST type --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 551c3a5a4a..9f6af7fcb6 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 + ''))