mercurial/extensions.py
changeset 29841 d5883fd055c6
parent 29765 19578bb84731
child 29895 b1ebc767563d
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
   530         version = '.'.join(str(o) for o in version)
   530         version = '.'.join(str(o) for o in version)
   531     return version
   531     return version
   532 
   532 
   533 def ismoduleinternal(module):
   533 def ismoduleinternal(module):
   534     exttestedwith = getattr(module, 'testedwith', None)
   534     exttestedwith = getattr(module, 'testedwith', None)
   535     return exttestedwith == "internal"
   535     return exttestedwith == "ships-with-hg-core"