Open url in a new window of the default browser. If not possible, then open url in the only browser window.
(url)
| 96 | |
| 97 | |
| 98 | def open_new(url): |
| 99 | """Open url in a new window of the default browser. |
| 100 | |
| 101 | If not possible, then open url in the only browser window. |
| 102 | """ |
| 103 | return open(url, 1) |
| 104 | |
| 105 | |
| 106 | def open_new_tab(url): |
nothing calls this directly
no test coverage detected
searching dependent graphs…