From 076e29649765a30eb993102697fcdd0fb92228fb Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sat, 26 Jan 2019 21:34:36 +0100 Subject: [PATCH] Improve a docstring, fixes #55. --- parso/python/tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parso/python/tree.py b/parso/python/tree.py index bb3b446..4955ee7 100644 --- a/parso/python/tree.py +++ b/parso/python/tree.py @@ -969,7 +969,7 @@ class ImportName(Import): class KeywordStatement(PythonBaseNode): """ For the following statements: `assert`, `del`, `global`, `nonlocal`, - `raise`, `return`, `yield`, `return`, `yield`. + `raise`, `return`, `yield`. `pass`, `continue` and `break` are not in there, because they are just simple keywords and the parser reduces it to a keyword.