Allow decorators and return annotations to be used together (fixes SF#1697248)
diff --git a/Python/ast.c b/Python/ast.c
index 1bd1430..f8bcdf2 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -983,7 +983,7 @@
 
     REQ(n, funcdef);
 
-    if (NCH(n) == 6) { /* decorators are present */
+    if (NCH(n) == 6 || NCH(n) == 8) { /* decorators are present */
         decorator_seq = ast_for_decorators(c, CHILD(n, 0));
         if (!decorator_seq)
             return NULL;