comparison: DebugClients/Python3/AsyncIO.py
DebugClients/Python3/AsyncIO.py
- changeset 96
- 9624a110667d
- parent 13
- 1af94a91f439
- child 791
- 9ec2ac20e54e
equal
deleted
inserted
replaced
46 |
46 |
47 @param fd file descriptor of the file that has data to be read (int) |
47 @param fd file descriptor of the file that has data to be read (int) |
48 """ |
48 """ |
49 try: |
49 try: |
50 got = self.readfd.readline_p() |
50 got = self.readfd.readline_p() |
51 except Exception as exc: |
51 except Exception: |
52 return |
52 return |
53 |
53 |
54 if len(got) == 0: |
54 if len(got) == 0: |
55 self.sessionClose() |
55 self.sessionClose() |
56 return |
56 return |