Set terminal title using the necessary platform-dependent calls.
(title)
| 106 | |
| 107 | |
| 108 | def set_term_title(title): |
| 109 | """Set terminal title using the necessary platform-dependent calls.""" |
| 110 | if ignore_termtitle: |
| 111 | return |
| 112 | _set_term_title(title) |
| 113 | |
| 114 | |
| 115 | def restore_term_title(): |
no test coverage detected