Comment on Making Go telemetry opt-in is a mistakeparentComments−Dagger23yThere's also: while data := fh.read(131072): # do stuff which is a lot nicer than: while True: data = fh.read() if not data: break # do stuff
Comments
There's also:
which is a lot nicer than: