[issue4048] parsermodule won't validate relative imports

2008-11-03 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks for the patch! Fixed in r67077. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue4048] parsermodule won't validate relative imports

2008-10-05 Thread David Hess
David Hess <[EMAIL PROTECTED]> added the comment: Confirmed the presence of this same problem in the source code of parsermodule.c in branches release25-maint and release26-maint. -- nosy: +david_k_hess versions: +Python 2.5, Python 2.6 ___ Python tr

[issue4048] parsermodule won't validate relative imports

2008-10-05 Thread David Binger
New submission from David Binger <[EMAIL PROTECTED]>: The parser module validates st instances that it builds from list or tuple structures. This validation fails for parse trees that include relative imports because it fails to correctly count the dots that immediately follow the "from" token.