Skip to content

Instantly share code, notes, and snippets.

@mdeous
Last active November 17, 2015 09:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdeous/ce8629e52fdd2edc90a3 to your computer and use it in GitHub Desktop.
Save mdeous/ce8629e52fdd2edc90a3 to your computer and use it in GitHub Desktop.
data = ''
tmp = s.recv(1)
while tmp:
data += tmp
if delim.encode() in tmp:
break
tmp = s.recv(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment