commit | 5a6ad8fb71501ec050f5ab6dac2763da0bf1f89e | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sat Oct 07 19:27:20 1995 +0000 |
committer | Guido van Rossum <guido@python.org> | Sat Oct 07 19:27:20 1995 +0000 |
tree | 7e7a031360b1738df1c664bad1b6afe499953383 | |
parent | 11bb1743b61535aeb06c512283b17a07a3cb9233 [diff] |
flush before reading response from socket
diff --git a/Demo/pdist/client.py b/Demo/pdist/client.py index d8f210e..3e93f1c 100755 --- a/Demo/pdist/client.py +++ b/Demo/pdist/client.py
@@ -135,6 +135,7 @@ import string apply(self._pre_init, args) Security.__init__(self) + self._wf.flush() line = self._rf.readline() challenge = string.atoi(string.strip(line)) response = self._encode_challenge(challenge)