Bidi adlı bir Python paketi kullanmaya çalışıyorum. Bu paketteki bir modülde (algoritma.py), paketin bir parçası olmasına rağmen bana hata veren bazı satırlar var.
İşte satırlar:
# 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
ve işte hata mesajı:
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'te çalışması için kodun bu bölümünü nasıl yeniden yazmalıyım? Ayrıca Python 3 ile bidi paketi kullanan biri varsa, lütfen benzer sorunlar bulup bulmadığını bana bildirin. Yardımın için minnettarım.