Open injust opened 6 months ago
Is PY_MAJOR_VERSION > 3 correct here? Shouldn't it be >= 3 instead?
PY_MAJOR_VERSION > 3
>= 3
https://github.com/sirfz/tesserocr/blob/0d4e94ce693fdac2c5511d33d67b3c2b20fdb60b/tesserocr/tesserocr.pyx#L43-L49
That's a good spot, I guess Cython interprets unicode as str in Python 3 anyway so this was never an issue.
unicode
str
Is
PY_MAJOR_VERSION > 3
correct here? Shouldn't it be>= 3
instead?https://github.com/sirfz/tesserocr/blob/0d4e94ce693fdac2c5511d33d67b3c2b20fdb60b/tesserocr/tesserocr.pyx#L43-L49