[issue3337] Fixer for dbm is failing

2008-07-10 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: r64870 has the fix through fix_imports2. -- resolution: -> fixed status: pending -> closed ___ Python tracker <[EMAIL PROTECTED]> _

[issue3337] Fixer for dbm is failing

2008-07-10 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: I have a potential solution brewing; running the full test suite to verify. -- status: open -> pending ___ Python tracker <[EMAIL PROTECTED]> __

[issue3337] Fixer for dbm is failing

2008-07-10 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: The failure seems to be from anydbm being mapped directly to dbm: import anydbm -> import dbm -> import dbm.ndbm A separate pass might be needed to handle dbm properly so that an import is not changed multiple times. _

[issue3337] Fixer for dbm is failing

2008-07-10 Thread Brett Cannon
New submission from Brett Cannon <[EMAIL PROTECTED]>: The fixer for dbm to dbm.ndbm fails test_fixers.Test_imports . -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) messages: 69526 nosy: brett.cannon, collinwinter priority: critical severity: normal status: open t