# HG changeset patch # User Boris Feld # Date 1500121014 -7200 # Node ID 792d121f22bab286f7e16302a28d3597be0256ed # Parent a543d17dce03b85ebc09400e50401ede9417322a extensions: expand the builtins extensions declaration This will future updates of the set cleaner and more readable. diff -r a543d17dce03 -r 792d121f22ba mercurial/extensions.py --- a/mercurial/extensions.py Sat Jul 15 20:31:52 2017 +0200 +++ b/mercurial/extensions.py Sat Jul 15 14:16:54 2017 +0200 @@ -29,8 +29,15 @@ _disabledextensions = {} _aftercallbacks = {} _order = [] -_builtin = {'hbisect', 'bookmarks', 'parentrevspec', 'progress', 'interhg', - 'inotify', 'hgcia'} +_builtin = { + 'hbisect', + 'bookmarks', + 'parentrevspec', + 'progress', + 'interhg', + 'inotify', + 'hgcia' +} def extensions(ui=None): if ui: