NameError:全局名称“unicode”未定义 – 在Python 3中

我正在尝试使用名为bidi的Python包。 在这个包(algorithm.py)的一个模块中,有一些行给我错误,虽然它是包的一部分。

这里是行:

# utf-8 ? we need unicode if isinstance(unicode_or_str, unicode): text = unicode_or_str decoded = False else: text = unicode_or_str.decode(encoding) decoded = True 

这里是错误信息:

 Traceback (most recent call last): File "<pyshell#25>", line 1, in <module> bidi_text = get_display(reshaped_text) File "C:\Python33\lib\site-packages\python_bidi-0.3.4-py3.3.egg\bidi\algorithm.py", line 602, in get_display if isinstance(unicode_or_str, unicode): NameError: global name 'unicode' is not defined 

我应该如何重新编写代码的这部分,以便它在Python3中工作? 另外如果有人使用Python 3的bidi包,请让我知道他们是否发现了类似的问题。 我感谢您的帮助。

Python 3将unicodetypes重命名为str ,旧的strtypes已被bytesreplace。

 if isinstance(unicode_or_str, str): text = unicode_or_str decoded = False else: text = unicode_or_str.decode(encoding) decoded = True 

您可能需要阅读Python 3移植HOWTO以获取更多此类细节。 还有Lennart Regebro的移植到Python 3:一个深入的指南 ,免费在线。

最后但并非最不重要的,你可以尝试使用2to3工具来看看如何为你转换代码。

您可以使用六个库来同时支持Python 2和Python 3:

 import six if isinstance(value, six.string_types): handle_string(value) 
Interesting Posts