comparison: DebugClients/Python/AsyncIO.py
DebugClients/Python/AsyncIO.py
- changeset 4563
- 881340f4bd0c
- parent 4543
- 2e6a880670e9
- child 4631
- 5c1a96925da4
equal
deleted
inserted
replaced
45 |
45 |
46 @param fd file descriptor of the file that has data to be read (int) |
46 @param fd file descriptor of the file that has data to be read (int) |
47 """ |
47 """ |
48 try: |
48 try: |
49 got = self.readfd.readline_p() |
49 got = self.readfd.readline_p() |
50 except: |
50 except Exception: |
51 return |
51 return |
52 |
52 |
53 if len(got) == 0: |
53 if len(got) == 0: |
54 self.sessionClose() |
54 self.sessionClose() |
55 return |
55 return |