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
I quite often find myself doing for line in fileobj.readlines(): rather than the more pythonic (?) for line in fileobj:.
uPy already supports the latter, so presumably it shouldn't be too hard to add the former?
The text was updated successfully, but these errors were encountered:
I quite often find myself doing
for line in fileobj.readlines():
rather than the more pythonic (?)for line in fileobj:
.uPy already supports the latter, so presumably it shouldn't be too hard to add the former?
The text was updated successfully, but these errors were encountered: