[issue14695] Tools/parser/unparse.py is out of date.

2012-05-07 Thread Mark Dickinson
Changes by Mark Dickinson : -- assignee: -> mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue14695] Tools/parser/unparse.py is out of date.

2012-05-07 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks, David! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bu

[issue14695] Tools/parser/unparse.py is out of date.

2012-05-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset f9344a3eaaa6 by Mark Dickinson in branch 'default': Issue #14695: Run Tools/parser/test_unparse.py as part of test_tools. http://hg.python.org/cpython/rev/f9344a3eaaa6 -- nosy: +python-dev ___ Python tra

[issue14695] Tools/parser/unparse.py is out of date.

2012-05-06 Thread R. David Murray
R. David Murray added the comment: Since we are already doing path hackery in that test file to get things to run, I think your patch would be fine. If we grow more tests for the stuff in Tools (which would be good), we might want to consider reorganizing things, but for now I think that the

[issue14695] Tools/parser/unparse.py is out of date.

2012-05-06 Thread Mark Dickinson
Mark Dickinson added the comment: David: Any suggestions for how best to integrate test_unparse.py into test_tools? We could move the contents of test_unparse.py directly in test_tools.py and just kill the old test_unparse.py. Alternatively, we could import those TestCase subclasses from te

[issue14695] Tools/parser/unparse.py is out of date.

2012-05-06 Thread Mark Dickinson
Mark Dickinson added the comment: Committed in revision c80576303892 (3.2), revision 89e928048903 (default). (I put 14965 instead of 14695 in the commit messages by mistake.) -- ___ Python tracker __

[issue14695] Tools/parser/unparse.py is out of date.

2012-05-06 Thread Mark Dickinson
Mark Dickinson added the comment: Ah, that's good to know. I think I'll commit the fix and then look into hooking test_unparse into test_tools. For 3.2, it turns out that all that's missing is support for Starred. -- ___ Python tracker

[issue14695] Tools/parser/unparse.py is out of date.

2012-05-04 Thread R. David Murray
R. David Murray added the comment: There is a test_tools file now. test_unparse could be called from it. -- nosy: +r.david.murray ___ Python tracker ___ ___

[issue14695] Tools/parser/unparse.py is out of date.

2012-04-29 Thread Mark Dickinson
New submission from Mark Dickinson : Here's a patch that makes all tests in Tools/parser/test_unparse.py pass on the default branch. (The 'yield from' bits would have to be removed for 3.2.) -- components: Demos and Tools files: unparse.patch keywords: patch messages: 159645 nosy: mark