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.

Author collinwinter
Recipients
Date 2007-01-10.14:40:24
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I think there were only four files I had to patch manually after running 2to3; each used automatic exception unpacking.

2to3 successfully fixes Lib/tarfile.py (as of tarfile.py r53336, 2to3 r53339).

The 'del e' in testExceptionCleanup() was indeed needed; it was there to verify that the transformation was

    except V as N:
       try:
          ...
       finally:
          N = None
          del N

and not

    except V as N:
       try:
          ...
       finally:
          del N
History
Date User Action Args
2007-08-23 15:56:12adminlinkissue1631942 messages
2007-08-23 15:56:12admincreate