faucamp / python-gsmmodem

Python module to control a GSM modem attached to the system: send/receive SMS messages, handle calls, etc
GNU Lesser General Public License v3.0
386 stars 303 forks source link

For compatibility with python3 #72

Closed alex-eri closed 8 years ago

alex-eri commented 8 years ago

list(b'123') is [49, 50, 51] on python3, but ['1', '2', '3'] on python2. bytes and bytearray is prefered for working with bytes.