mercurial/configitems.py
changeset 33471 d74141ccfd8b
parent 33329 e714159860fd
child 33472 d0869a6e83ab
--- a/mercurial/configitems.py	Fri Jul 14 16:17:37 2017 +0200
+++ b/mercurial/configitems.py	Wed Jul 12 23:36:10 2017 +0200
@@ -51,6 +51,9 @@
         raise error.ProgrammingError(msg % (item.section, item.name))
     section[item.name] = item
 
+# special value for case where the default is derived from other values
+dynamicdefault = object()
+
 # Registering actual config items
 
 def getitemregister(configtable):