##// END OF EJS Templates
allow use of extensions in python hooks...
allow use of extensions in python hooks extensions are loaded with hgext_ prefix, try to use them if the module is not found in the normal path

File last commit:

r2484:eabcda3e default
r2581:54b15237 default
Show More
remoterepo.py
23 lines | 593 B | text/x-python | PythonLexer
# remoterepo - remote repositort proxy classes for mercurial
#
# Copyright 2005 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
class remoterepository(object):
def dev(self):
return -1
def local(self):
return False
class remotelock(object):
def __init__(self, repo):
self.repo = repo
def release(self):
self.repo.unlock()
self.repo = None
def __del__(self):
if self.repo:
self.release()