You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unicode support was added somewhat hastily. I pretty much just shoved a b in front of all the strings, and switched StringIO for BytesIO.
I'm not entirely sure that StringIO is even used anymore. The import may be removable
For some reason, StringIO can be imported as either from StringIO import StringIO or from io import StringIO, what are their differences? does something similar apply to BytesIO?
Unicode support was added somewhat hastily. I pretty much just shoved a
b
in front of all the strings, and switched StringIO for BytesIO.from StringIO import StringIO
orfrom io import StringIO
, what are their differences? does something similar apply to BytesIO?nrepl-python-client/nrepl/bencode.py
Lines 106 to 109 in a97ba25
There's probably more refactoring to look into, but this is what comes to mind.
The text was updated successfully, but these errors were encountered: