From 2f07a66dedb6f69cbe601f7ca2c3fca66898ffe3 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Thu, 23 Jul 2015 08:54:35 +0300 Subject: Issue #24688: ast.get_docstring() for 'async def' functions. --- Lib/test/test_ast.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Lib/test') diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index c220a3cac2..7ed03e70e0 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -511,6 +511,9 @@ class ASTHelpers_Test(unittest.TestCase): self.assertEqual(ast.get_docstring(node.body[0]), 'line one\nline two') + node = ast.parse('async def foo():\n """spam\n ham"""') + self.assertEqual(ast.get_docstring(node.body[0]), 'spam\nham') + def test_literal_eval(self): self.assertEqual(ast.literal_eval('[1, 2, 3]'), [1, 2, 3]) self.assertEqual(ast.literal_eval('{"foo": 42}'), {"foo": 42}) -- cgit v1.2.1