comparison mercurial/policy.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 39e2b2d062c1
children b0a4de6c14f8
comparison
equal deleted inserted replaced
51699:bd1483fd7088 51700:7f0cb9ee0534
35 b'rust+c': ('cext', None), 35 b'rust+c': ('cext', None),
36 b'rust+c-allow': ('cext', 'pure'), 36 b'rust+c-allow': ('cext', 'pure'),
37 } 37 }
38 38
39 try: 39 try:
40 from . import __modulepolicy__ # type: ignore 40 from . import __modulepolicy__
41 41
42 policy = __modulepolicy__.modulepolicy 42 policy = __modulepolicy__.modulepolicy
43 except ImportError: 43 except ImportError:
44 pass 44 pass
45 45