(self, final=False)
| 2126 | self.message_tokens_received = 0 |
| 2127 | |
| 2128 | def get_multi_response_content_in_progress(self, final=False): |
| 2129 | cur = self.multi_response_content or "" |
| 2130 | new = self.partial_response_content or "" |
| 2131 | |
| 2132 | if new.rstrip() != new and not final: |
| 2133 | new = new.rstrip() |
| 2134 | |
| 2135 | return cur + new |
| 2136 | |
| 2137 | def get_rel_fname(self, fname): |
| 2138 | try: |
no outgoing calls
no test coverage detected