Allow decorators and return annotations to be used together (fixes SF#1697248)

This commit is contained in:
Nick Coghlan 2007-04-23 11:05:01 +00:00
parent 4138bfec0a
commit 71011e2c2b
2 changed files with 7 additions and 2 deletions

View file

@ -983,7 +983,7 @@ ast_for_funcdef(struct compiling *c, const node *n)
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;