[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 devn...@psf.upfronthosting.co.za 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 -

[issue12575] add a AST validator

2011-07-29 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: It'd be nice to get this in soon, so phase 2 can begin. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12575 ___

[issue12575] add a AST validator

2011-07-22 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu 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

[issue12575] add a AST validator

2011-07-22 Thread Alex Gaynor
Alex Gaynor alex.gay...@gmail.com 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

[issue12575] add a AST validator

2011-07-22 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: -terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12575 ___ ___ Python-bugs-list

[issue12575] add a AST validator

2011-07-19 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12575 ___ ___ Python-bugs-list

[issue12575] add a AST validator

2011-07-17 Thread Daniel Urban
Changes by Daniel Urban urban.dani...@gmail.com: -- nosy: +durban ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12575 ___ ___ Python-bugs-list

[issue12575] add a AST validator

2011-07-17 Thread Andreas Stührk
Changes by Andreas Stührk andy-pyt...@hammerhartes.de: -- nosy: +Trundle ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12575 ___ ___

[issue12575] add a AST validator

2011-07-16 Thread Benjamin Peterson
New submission from Benjamin Peterson benja...@python.org: 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

[issue12575] add a AST validator

2011-07-16 Thread Armin Ronacher
Armin Ronacher armin.ronac...@active-4.com added the comment: I see what you did there :P -- nosy: +aronacher ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12575 ___

[issue12575] add a AST validator

2011-07-16 Thread Alex Gaynor
Changes by Alex Gaynor alex.gay...@gmail.com: -- nosy: +alex ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12575 ___ ___ Python-bugs-list mailing

[issue12575] add a AST validator

2011-07-16 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: 2011/7/16 Armin Ronacher rep...@bugs.python.org: Armin Ronacher armin.ronac...@active-4.com added the comment: I see what you did there :P Is that a message of approval? :) -- ___ Python