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: 2to3 fails in Python 2.6
Type: crash Stage:
Components: 2to3 (2.x to 3.x conversion tool) Versions: Python 2.6
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: collinwinter Nosy List: benjamin.peterson, collinwinter, loewis
Priority: deferred blocker Keywords:

Created on 2008-07-16 00:43 by benjamin.peterson, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (5)
msg69739 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-07-16 00:43
I'm disabling lib2to3 in the trunk because it fails just for Python 2.6.
(Python 2.5 and 3.0 are fine.)
msg69750 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2008-07-16 02:48
Reverting r64742 would have had the same effect (IMO, it shouldn't have
been checked in in the first place, as it causes the test suite to fail).
msg69751 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-07-16 02:51
That revision caused the test suite to fail because it caused to be
actually run. :)
msg69753 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2008-07-16 03:00
> That revision caused the test suite to fail because it caused to be
> actually run. :)

Right - but now you've disabled the test again, when the original
introduction of the resource lib2to3 already had the (desirable)
effect of disabling the test.

IOW, this is a duplicate of issue2969.
msg69755 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-07-16 03:17
> IOW, this is a duplicate of issue2969.
and so it is.

Well, it's disabled now, so no point in arguing how.
History
Date User Action Args
2022-04-11 14:56:36adminsetgithub: 47621
2008-07-16 03:17:31benjamin.petersonsetstatus: open -> closed
resolution: duplicate
messages: + msg69755
2008-07-16 03:00:26loewissetmessages: + msg69753
2008-07-16 02:51:58benjamin.petersonsetmessages: + msg69751
2008-07-16 02:48:51loewissetnosy: + loewis
messages: + msg69750
2008-07-16 00:45:18benjamin.petersonsettype: crash
title: 2to3 fails in 3.0 -> 2to3 fails in Python 2.6
2008-07-16 00:43:20benjamin.petersoncreate