[issue3889] Demo/parser/unparse.py

2008-09-21 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: This was fixed some time ago on the trunk. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue3889] Demo/parser/unparse.py

2008-09-17 Thread Greg Darke
New submission from Greg Darke <[EMAIL PROTECTED]>: When the unparse demo is run on a file containing a 'from x import y' statement, it incorrectly outputs it as 'from x import , y'. The attached patch fixes this. -- components: Demos and Tools files: fix_import_from_bug.patch keywords: