コード例 #1
0
 def __init__(self, *args):
     """
     Initialize git client to None (will be set later)
     All the real logic is in the setup_repo and create_working_copy methods
     """
     self.client = None
     FileRepository.__init__(self, *args)
コード例 #2
0
ファイル: hgrepo.py プロジェクト: ULHPC/easybuild-framework
 def __init__(self, *args):
     """
     Initialize mercurial client to None (will be set later)
     All the real logic is in the setup_repo and create_working_copy methods
     """
     self.client = None
     FileRepository.__init__(self, *args)
コード例 #3
0
 def __init__(self, *args):
     """
     Initialize git client to None (will be set later)
     All the real logic is in the setupRepo and createWorkingCopy methods
     """
     self.client = None
     FileRepository.__init__(self, *args)
コード例 #4
0
 def __init__(self, *args):
     """
     Set self.client to None. Real logic is in setup_repo and create_working_copy
     """
     self.client = None
     FileRepository.__init__(self, *args)
コード例 #5
0
 def __init__(self, *args):
     """
     Set self.client to None. Real logic is in setup_repo and create_working_copy
     """
     self.client = None
     FileRepository.__init__(self, *args)