# HG changeset patch # User Navaneeth Suresh # Date 1561880066 -19800 # Node ID 6a3872e34503d6cf283a49203716c0b283343f1d # Parent 904e0da2e195d2a29977ceccdd25480233c34d7a extensions: add shelve to _builtin This is a follow-up patch to 3de4f17f4824. This adds `shelve` to `extensions._builtin` so that the shelve extension is silently ignored. Differential Revision: https://phab.mercurial-scm.org/D6589 diff -r 904e0da2e195 -r 6a3872e34503 mercurial/extensions.py --- a/mercurial/extensions.py Sun Jun 30 15:10:56 2019 +0900 +++ b/mercurial/extensions.py Sun Jun 30 13:04:26 2019 +0530 @@ -43,7 +43,8 @@ 'progress', 'interhg', 'inotify', - 'hgcia' + 'hgcia', + 'shelve', } def extensions(ui=None):