This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Demo/parser/unparse.py
Type: Stage:
Components: Demos and Tools Versions: Python 2.5
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, gregdarke
Priority: normal Keywords: patch

Created on 2008-09-17 12:33 by gregdarke, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fix_import_from_bug.patch gregdarke, 2008-09-17 12:33 Patch for described problem. patched against r66487 of /python/branches/release25-maint/Demo/parser/unparse.py
Messages (2)
msg73331 - (view) Author: Greg Darke (gregdarke) Date: 2008-09-17 12:33
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.
msg73493 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-09-21 07:29
This was fixed some time ago on the trunk.
History
Date User Action Args
2022-04-11 14:56:39adminsetgithub: 48139
2008-09-21 07:29:45georg.brandlsetstatus: open -> closed
resolution: out of date
messages: + msg73493
nosy: + georg.brandl
2008-09-17 12:33:53gregdarkecreate