4561:5bc6ed226471 | 4563:881340f4bd0c |
---|---|
20 @param file The file object to be checked (file) | 20 @param file The file object to be checked (file) |
21 @return Flag indicating if there is data wating (int) | 21 @return Flag indicating if there is data wating (int) |
22 """ | 22 """ |
23 try: | 23 try: |
24 pending = file.pendingWrite() | 24 pending = file.pendingWrite() |
25 except: | 25 except Exception: |
26 pending = 0 | 26 pending = 0 |
27 | 27 |
28 return pending | 28 return pending |
29 | 29 |
30 | 30 |