##// END OF EJS Templates
hghave: remove unused hotshot check
Patrick Mezard -
r13289:58b26b36 default
parent child Browse files
Show More
@@ -101,15 +101,6 b' def has_inotify():'
101 def has_fifo():
101 def has_fifo():
102 return hasattr(os, "mkfifo")
102 return hasattr(os, "mkfifo")
103
103
104 def has_hotshot():
105 try:
106 # hotshot.stats tests hotshot and many problematic dependencies
107 # like profile.
108 import hotshot.stats
109 return True
110 except ImportError:
111 return False
112
113 def has_lsprof():
104 def has_lsprof():
114 try:
105 try:
115 import _lsprof
106 import _lsprof
@@ -198,7 +189,6 b' checks = {'
198 "fifo": (has_fifo, "named pipes"),
189 "fifo": (has_fifo, "named pipes"),
199 "git": (has_git, "git command line client"),
190 "git": (has_git, "git command line client"),
200 "gpg": (has_gpg, "gpg client"),
191 "gpg": (has_gpg, "gpg client"),
201 "hotshot": (has_hotshot, "python hotshot module"),
202 "icasefs": (has_icasefs, "case insensitive file system"),
192 "icasefs": (has_icasefs, "case insensitive file system"),
203 "inotify": (has_inotify, "inotify extension support"),
193 "inotify": (has_inotify, "inotify extension support"),
204 "lsprof": (has_lsprof, "python lsprof module"),
194 "lsprof": (has_lsprof, "python lsprof module"),
General Comments 0
You need to be logged in to leave comments. Login now