mnooner256 / pyqrcode

Python 3 module to generate QR Codes
BSD 3-Clause "New" or "Revised" License
408 stars 75 forks source link

Issue #34 #35

Closed heuer closed 9 years ago

heuer commented 9 years ago

Added (failing) test cases.

mnooner256 commented 9 years ago

This got fixed along away. The str function calls repr. Which in turn uses repr() on the code's data. This means it should always generate a string. The string represents unicode characters with '\x##' rather than the actual characters.