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 Arfrever
Recipients Arfrever
Date 2011-02-21.20:32:49
SpamBayes Score 0.002898739
Marked as misclassified No
Message-id <1298320370.6.0.707528298714.issue11276@psf.upfronthosting.co.za>
In-reply-to
Content
$ cat test.py
import cPickle
cPickle
cPickle.load
$ 2to3 -f imports test.py
RefactoringTool: Refactored test.py
--- test.py     (original)
+++ test.py     (refactored)
@@ -1,3 +1,3 @@
-import cPickle
+import pickle
 cPickle
-cPickle.load
+pickle.load
RefactoringTool: Files that need to be modified:
RefactoringTool: test.py
History
Date User Action Args
2011-02-21 20:32:50Arfreversetrecipients: + Arfrever
2011-02-21 20:32:50Arfreversetmessageid: <1298320370.6.0.707528298714.issue11276@psf.upfronthosting.co.za>
2011-02-21 20:32:50Arfreverlinkissue11276 messages
2011-02-21 20:32:49Arfrevercreate