Parcourir la source

[2353] Explain why we throw after 15 recv()s, in a comment

Mukund Sivaraman il y a 12 ans
Parent
commit
609e5bf400
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      src/bin/bind10/tests/bind10_test.py.in

+ 2 - 0
src/bin/bind10/tests/bind10_test.py.in

@@ -1893,6 +1893,8 @@ class TestBossComponents(unittest.TestCase):
                     raise Exception('bufsize != 1')
                 if flags != socket.MSG_DONTWAIT:
                     raise Exception('flags != socket.MSG_DONTWAIT')
+                # after 15 recv()s, throw a socket.error with EAGAIN to
+                # get _socket_data() to save back what's been read.
                 if self.throw and self.i > 15:
                     raise socket.error(errno.EAGAIN, 'Try again')
                 if self.i >= len(self.buf):