summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-12 18:19:19 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-12 18:19:19 (GMT)
commitf28fcff17d9f777eab52126a9c8a984cac17a9ec (patch)
treeda466e7b119ec42717c022d8cd09fc630989d334
parent518cf94ad79503fb16475ccc29592b390e7b19da (diff)
downloadcpython-f28fcff17d9f777eab52126a9c8a984cac17a9ec.zip
cpython-f28fcff17d9f777eab52126a9c8a984cac17a9ec.tar.gz
cpython-f28fcff17d9f777eab52126a9c8a984cac17a9ec.tar.bz2
adjust for change in AST type
-rw-r--r--Lib/test/test_sys.py2
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 + ''))