mercurial/config.py
changeset 22419 fdfc9faca273
parent 22418 192c798aabee
child 25095 3182965b3971
--- a/mercurial/config.py	Thu Sep 11 12:21:15 2014 -0500
+++ b/mercurial/config.py	Thu Sep 11 12:26:12 2014 -0500
@@ -9,39 +9,6 @@
 import error, util
 import os, errno
 
-samplehgrcs = {
-    'user':
-"""# example user config (see "hg help config" for more info)
-[ui]
-# name and email, e.g.
-# username = Jane Doe <jdoe@example.com>
-username =
-
-[extensions]
-# uncomment these lines to enable some popular extensions
-# (see "hg help extensions" for more info)
-#
-# pager =
-# progress =
-# color =""",
-
-    'local':
-"""# example repository config (see "hg help config" for more info)
-""",
-
-    'global':
-"""# example system-wide hg config (see "hg help config" for more info)
-
-[extensions]
-# uncomment these lines to enable some popular extensions
-# (see "hg help extensions" for more info)
-#
-# blackbox =
-# progress =
-# color =
-# pager =""",
-}
-
 class config(object):
     def __init__(self, data=None):
         self._data = {}