We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is fetched over and over again, and each time it takes several seconds, rendering the test quite very slow:
socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) = 9 connect(9, {sa_family=AF_INET, sin_port=htons(80), sin_addr=inet_addr("128.30.52.100")}, 16) = 0 sendto(9, "GET /MarkUp/DTD/xhtml-csismap-1.mod HTTP/1.0\r\nHost: www.w3.org\r\nUser-Agent: Python-urllib/1.17\r\nAccept: /\r\n\r\n", 111, 0, NULL, 0) = 111
Can't it just be cached the first time?
The text was updated successfully, but these errors were encountered:
that's weird. Haven't noticed it before, maybe related to one of the external libraries.
Sorry, something went wrong.
No branches or pull requests
This is fetched over and over again, and each time it takes several seconds, rendering the test quite very slow:
socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) = 9
connect(9, {sa_family=AF_INET, sin_port=htons(80), sin_addr=inet_addr("128.30.52.100")}, 16) = 0
sendto(9, "GET /MarkUp/DTD/xhtml-csismap-1.mod HTTP/1.0\r\nHost: www.w3.org\r\nUser-Agent: Python-urllib/1.17\r\nAccept: /\r\n\r\n", 111, 0, NULL, 0) = 111
Can't it just be cached the first time?
The text was updated successfully, but these errors were encountered: