Python 3将
unipre类型重命名为
str,旧
str类型已替换为
bytes。
if isinstance(unipre_or_str, str): text = unipre_or_str depred = Falseelse: text = unipre_or_str.depre(encoding) depred = True
您可能需要阅读Python 3 porting
HOWTO以获得更多此类详细信息。Lennart
Regebro的Porting to Python 3:深入指南,可免费在线获得。
最后但并非最不重要的一点是,您可以尝试使用该
2to3工具查看如何为您转换代码。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)