pep-0492: Fix snippet with Grammar

This commit is contained in:
Yury Selivanov 2015-04-17 17:37:41 -04:00
parent cd5e0b4fc5
commit 7447d4fe83
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ Grammar changes are also fairly minimal::
decorated: decorators (classdef | funcdef | async_funcdef)
async_funcdef: ASYNC funcdef
async_stmt: ASYNC (funcdef | with_stmt) # will add for_stmt later
async_stmt: ASYNC (funcdef | with_stmt | for_stmt)
compound_stmt: (if_stmt | while_stmt | for_stmt | try_stmt | with_stmt
| funcdef | classdef | decorated | async_stmt)