[issue9621] Graphviz output for 2to3 fixer patterns

2021-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed superseder: -> Close 2to3 issues and list them here ___ Python tracker _

[issue9621] Graphviz output for 2to3 fixer patterns

2016-11-06 Thread A.M. Kuchling
A.M. Kuchling added the comment: Matt, do you just want to drop the issue or provide a new patch? Your code might well still be useful, but it's been 6 years, so you may not even have the code any longer. -- nosy: +akuchling ___ Python tracker

[issue9621] Graphviz output for 2to3 fixer patterns

2010-12-02 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue9621] Graphviz output for 2to3 fixer patterns

2010-12-02 Thread Matt Bond
Matt Bond added the comment: Sorry for the delay in responding, and for getting this patch cleaned up and submitted. While I was going through my code to submit it, I found a couple of additional issues with it. Then I ended up becoming very busy with my grad courses. As a result, I haven't

[issue9621] Graphviz output for 2to3 fixer patterns

2010-11-27 Thread Éric Araujo
Éric Araujo added the comment: Hey Matt, can you give us a status update? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9621] Graphviz output for 2to3 fixer patterns

2010-09-29 Thread Matt Bond
Matt Bond added the comment: Huh. I must have diffed the wrong version of my code - how embarrassing! I'll update the attached patch later this week. Thanks for catching that. -- ___ Python tracker ___

[issue9621] Graphviz output for 2to3 fixer patterns

2010-09-22 Thread Éric Araujo
Éric Araujo added the comment: > When I was working with 2to3 this summer I was running it via python3, > so I think the patch should work Code in the patch uses print as a keyword (2.x), not a function (3.x). How does that work? > however, if I've submitted it to the wrong place or the wrong

[issue9621] Graphviz output for 2to3 fixer patterns

2010-09-22 Thread Matt Bond
Matt Bond added the comment: As requested, attached is the output for the fix_buffer fixer, as an example of the kind of output this patch can produce. -- Added file: http://bugs.python.org/file18968/fix_buf_pytree_1.png ___ Python tracker

[issue9621] Graphviz output for 2to3 fixer patterns

2010-09-21 Thread Matt Bond
Matt Bond added the comment: Éric, When I was working with 2to3 this summer I was running it via python3, so I think the patch should work - however, if I've submitted it to the wrong place or the wrong branch, where should I be looking at to ensure my code does work on 3.2 and is submitted

[issue9621] Graphviz output for 2to3 fixer patterns

2010-09-21 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Matt, Can you post a sample graph in a common image format, say PNG? I am curious to see it, but not curious enough to install graphviz. -- nosy: +belopolsky ___ Python tracker

[issue9621] Graphviz output for 2to3 fixer patterns

2010-09-20 Thread Éric Araujo
Éric Araujo added the comment: Can you port your diff to 3.2? It’s where new features land. I think the implicit relative import (“import gvgraph” with the Tools/scripts dir is not on sys.path) won’t work. -- nosy: +benjamin.peterson, eric.araujo stage: -> patch review type: -> fea

[issue9621] Graphviz output for 2to3 fixer patterns

2010-08-16 Thread Matt Bond
New submission from Matt Bond : As part of my GSoC project working on 2to3, I've created a script which will allow compiled fixer patterns to be visualized using graphviz. This would be useful for debugging and understanding exactly how patterns are matched. I've written using the 2to3 sandbox