sirfz / tesserocr

A Python wrapper for the tesseract-ocr API
MIT License
2.02k stars 254 forks source link

`PY_MAJOR_VERSION > 3` #351

Open injust opened 6 months ago

injust commented 6 months ago

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

sirfz commented 6 months ago

That's a good spot, I guess Cython interprets unicode as str in Python 3 anyway so this was never an issue.