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 dangyogi
Recipients collinwinter, dangyogi
Date 2008-03-19.21:00:02
SpamBayes Score 0.33980048
Marked as misclassified No
Message-id <1205960403.35.0.278186384366.issue2428@psf.upfronthosting.co.za>
In-reply-to
Content
2to3, svn rev 61623.  To reproduce this error:

$ cat <<! > foobar.py
# line 1
# line 2

from __future__ import with_statement
import sys
!
$ 2to3 -w foobar.py
RefactoringTool: Skipping implicit fixer: buffer
RefactoringTool: Skipping implicit fixer: idioms
RefactoringTool: Skipping implicit fixer: ws_comma
--- foobar.py (original)
+++ foobar.py (refactored)
@@ -1,5 +1,2 @@
-# line 1
-# line 2
 
-from __future__ import with_statement
 import sys
RefactoringTool: Files that were modified:
RefactoringTool: foobar.py
$ cat foobar.py

import sys
$
History
Date User Action Args
2008-03-19 21:00:03dangyogisetspambayes_score: 0.3398 -> 0.33980048
recipients: + dangyogi, collinwinter
2008-03-19 21:00:03dangyogisetspambayes_score: 0.3398 -> 0.3398
messageid: <1205960403.35.0.278186384366.issue2428@psf.upfronthosting.co.za>
2008-03-19 21:00:02dangyogilinkissue2428 messages
2008-03-19 21:00:02dangyogicreate