[issue11000] Doc: ast.parse parses source, not just expressions

2011-01-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: r88172, r88173, r88175 -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue11000] Doc: ast.parse parses source, not just expressions

2011-01-24 Thread Georg Brandl
Georg Brandl added the comment: Looks fine. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue11000] Doc: ast.parse parses source, not just expressions

2011-01-24 Thread Terry J. Reedy
New submission from Terry J. Reedy : "ast.parse(expr, filename='', mode='exec') Parse an expression into an AST node. Equivalent to compile(expr, filename, mode, ast.PyCF_ONLY_AST)." but "compile(source, ...) Compile the source into a code or AST object. ... The mode argument specifies what