cpython: e5063a82f490 (original) (raw)

Mercurial > cpython

changeset 102219:e5063a82f490

Issue #27352: Fixed an error message in a test. [#27352]

Serhiy Storchaka storchaka@gmail.com
date Mon, 27 Jun 2016 23:40:43 +0300
parents 2adb8af9fffd
children a9b4da316283
files Lib/test/test_ast.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Lib/test/test_ast.py 2

line wrap: on

line diff

--- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -754,7 +754,7 @@ class ASTValidatorTests(unittest.TestCas def test_importfrom(self): imp = ast.ImportFrom(None, [ast.alias("x", None)], -42)

def test_global(self):