Mercurial > public > mercurial-scm > hg
comparison mercurial/bundlecaches.py @ 51597:ee1b648e4453
branching: merge stable into default
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Wed, 17 Apr 2024 12:28:48 +0200 |
parents | f610d705c3ca eac84af0c8cc |
children | 138ab7c6a6ff |
comparison
equal
deleted
inserted
replaced
51596:b0aaffcb6fcf | 51597:ee1b648e4453 |
---|---|
177 # mapping of known parameter name need their value processed | 177 # mapping of known parameter name need their value processed |
178 bundle_spec_param_processing = { | 178 bundle_spec_param_processing = { |
179 b"obsolescence": param_bool, | 179 b"obsolescence": param_bool, |
180 b"obsolescence-mandatory": param_bool, | 180 b"obsolescence-mandatory": param_bool, |
181 b"phases": param_bool, | 181 b"phases": param_bool, |
182 b"changegroup": param_bool, | |
183 b"tagsfnodescache": param_bool, | |
184 b"revbranchcache": param_bool, | |
182 } | 185 } |
183 | 186 |
184 | 187 |
185 def _parseparams(s): | 188 def _parseparams(s): |
186 """parse bundlespec parameter section | 189 """parse bundlespec parameter section |