(links)
| 24 | return index |
| 25 | |
| 26 | def parse(links): |
| 27 | links = links.splitlines() |
| 28 | for index in range(len(links)): |
| 29 | links[index] = links[index].split(' ', 1) |
| 30 | return links |
| 31 | |
| 32 | def check(links): |
| 33 | from socket import socket |
no test coverage detected