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
Many stdlib methods return py2 str in python2 and decoded string in py3. When writing py2/3 code I have to decode on py2. I was curious why future does not have a util method for this? I thought it would be a fairly common thing?
The text was updated successfully, but these errors were encountered:
Seems like a naitive_str_to_text function would fit nicely in future.utils, I was also surprised that this isn't available. Is there some nice way to do this we are missing?
Hi,
Many stdlib methods return py2 str in python2 and decoded string in py3. When writing py2/3 code I have to decode on py2. I was curious why future does not have a util method for this? I thought it would be a fairly common thing?
The text was updated successfully, but these errors were encountered: