swaroopch / edn_format

EDN reader and writer implementation in Python, using PLY (lex, yacc)
https://swaroopch.com/2012/12/24/edn-format-python/
Other
131 stars 31 forks source link

Fix code and tests for Python 2 #78

Closed bfontaine closed 3 years ago

bfontaine commented 3 years ago

I merged #77 and released, but saw after that the tests are failing on Python 2 due to encoding issues: unicode characters can’t be encoded in str; it needs to be unicode. 😭

So Char must subclass unicode in Python 2, rather than str.