[issue11074] fix tokenize so it can be reloaded

2011-02-21 Thread Brett Cannon
Brett Cannon added the comment: r88498 for 3.3 r88499 for 3.2 -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue11074] fix tokenize so it can be reloaded

2011-02-04 Thread Éric Araujo
Éric Araujo added the comment: LGTM. -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue11074] fix tokenize so it can be reloaded

2011-01-31 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: georg.brandl -> brett.cannon versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Pytho

[issue11074] fix tokenize so it can be reloaded

2011-01-30 Thread Brett Cannon
New submission from Brett Cannon : The tokenize module stores the built-in open() module in a global assignment statement. Problem is that if you reload the module, that global assignment picks up the module's own open() that came into existence during the initial import. The attached patch f