[issue12575] add a AST validator

2021-03-18 Thread STINNER Victor
STINNER Victor added the comment: New changeset eec8e61992fb654d4cf58de4d727c18622b8303e by Victor Stinner in branch 'master': bpo-43244: Remove the PyAST_Validate() function (GH-24911) https://github.com/python/cpython/commit/eec8e61992fb654d4cf58de4d727c18622b8303e -- ___

[issue12575] add a AST validator

2021-03-17 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +vstinner nosy_count: 8.0 -> 9.0 pull_requests: +23674 pull_request: https://github.com/python/cpython/pull/24911 ___ Python tracker ___ ___

[issue12575] add a AST validator

2011-08-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4090dfdf91a4 by Benjamin Peterson in branch 'default': add a AST validator (closes #12575) http://hg.python.org/cpython/rev/4090dfdf91a4 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/rejected status: open -> cl

[issue12575] add a AST validator

2011-07-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: It'd be nice to get this in soon, so phase 2 can begin. -- ___ Python tracker ___ ___ Python-bug

[issue12575] add a AST validator

2011-07-22 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue12575] add a AST validator

2011-07-22 Thread Alex Gaynor
Alex Gaynor added the comment: 1) Yes, it address a real concern that arose during Armin's GSOC project which has been developing a unified template compilation architecture (via the AST module) for Django and Jinja2. 2) Asking speed questions about this is silly IMO, if compiling functions is

[issue12575] add a AST validator

2011-07-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: >From a top level view, the patch adds PyAST_Validate (with helpers) to ast.c >and one call to PyAST_Validate in bltinmodule.c in builtin_compile(). The >added tests do every silly thing you can think of. Does PyAST_Validate get invoked for all calls to compi

[issue12575] add a AST validator

2011-07-19 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue12575] add a AST validator

2011-07-17 Thread Andreas Stührk
Changes by Andreas Stührk : -- nosy: +Trundle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue12575] add a AST validator

2011-07-16 Thread Daniel Urban
Changes by Daniel Urban : -- nosy: +durban ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue12575] add a AST validator

2011-07-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2011/7/16 Armin Ronacher : > > Armin Ronacher added the comment: > > I see what you did there :P Is that a message of approval? :) -- ___ Python tracker _

[issue12575] add a AST validator

2011-07-16 Thread Alex Gaynor
Changes by Alex Gaynor : -- nosy: +alex ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue12575] add a AST validator

2011-07-16 Thread Armin Ronacher
Armin Ronacher added the comment: I see what you did there :P -- nosy: +aronacher ___ Python tracker ___ ___ Python-bugs-list mailing

[issue12575] add a AST validator

2011-07-16 Thread Benjamin Peterson
New submission from Benjamin Peterson : The goal of this patch to keep people doing silly things like producing a Try with no finalbody or excepthandlers and segfaulting the compiler in unpleasant ways. -- components: Interpreter Core files: ast_validator.patch keywords: patch messages