Mercurial > hg
comparison tests/dumbhttp.py @ 51700:7f0cb9ee0534
Backout accidental publication of a large range of revisions
I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 23 Jul 2024 10:02:46 +0200 |
parents | 493034cc3265 |
children | ca7bde5dbafb |
comparison
equal
deleted
inserted
replaced
51699:bd1483fd7088 | 51700:7f0cb9ee0534 |
---|---|
23 | 23 |
24 if os.environ.get('HGIPV6', '0') == '1': | 24 if os.environ.get('HGIPV6', '0') == '1': |
25 | 25 |
26 class simplehttpserver(httpserver.httpserver): | 26 class simplehttpserver(httpserver.httpserver): |
27 address_family = socket.AF_INET6 | 27 address_family = socket.AF_INET6 |
28 | |
28 | 29 |
29 else: | 30 else: |
30 simplehttpserver = httpserver.httpserver | 31 simplehttpserver = httpserver.httpserver |
31 | 32 |
32 | 33 |