##// END OF EJS Templates
py3: open extension source in binary mode to read docstring as bytes
Yuya Nishihara -
r38362:2c1d9838 default
parent child Browse files
Show More
@@ -605,7 +605,7 b' def _moduledoc(file):'
605 def _disabledhelp(path):
605 def _disabledhelp(path):
606 '''retrieve help synopsis of a disabled extension (without importing)'''
606 '''retrieve help synopsis of a disabled extension (without importing)'''
607 try:
607 try:
608 file = open(path)
608 file = open(path, 'rb')
609 except IOError:
609 except IOError:
610 return
610 return
611 else:
611 else:
General Comments 0
You need to be logged in to leave comments. Login now