コード例 #1
0
 def __init__(self, msg):
     BzrError.__init__(self)
     self.msg = msg
コード例 #2
0
 def __init__(self, path):
     BzrError.__init__(self)
     self.path = path
コード例 #3
0
 def __init__(self, path, existing_path):
     BzrError.__init__(self)
     self.path = path
     self.existing_path = existing_path
コード例 #4
0
 def __init__(self, name):
     BzrError.__init__(self)
     self.name = name
コード例 #5
0
 def __init__(self, branch_path, mapping=None):
     BzrError.__init__(self)
     self.branch_path = urllib.quote(branch_path)
     self.mapping = mapping
コード例 #6
0
 def __init__(self, url):
     BzrError.__init__(self)
     self.path = url
コード例 #7
0
 def __init__(self, layout=None):
     BzrError.__init__(self, layout=layout)
コード例 #8
0
 def __init__(self, property, msg):
     BzrError.__init__(self)
     self.property = property
     self.msg = msg
コード例 #9
0
 def __init__(self, got, expected):
     BzrError.__init__(self)
     self.got = got
     self.expected = expected
コード例 #10
0
 def __init__(self, mapping, extra=None):
     BzrError.__init__(self, extra=(extra or ""))
     self.mapping = mapping
コード例 #11
0
 def __init__(self, fileid):
     BzrError.__init__(self)
     self.fileid = fileid
コード例 #12
0
 def __init__(self, child, parent, revmeta):
     BzrError.__init__(self)
     self.child = child
     self.parent = parent
     self.revmeta = revmeta
コード例 #13
0
 def __init__(self, layout, mapping):
     BzrError.__init__(self)
     self.layout = layout
     self.mapping = mapping
コード例 #14
0
ファイル: scheme.py プロジェクト: jelmer/breezy-svn
 def __init__(self, path, layout):
     BzrError.__init__(self)
     self.path = urllib.quote(path)
     self.layout = layout
コード例 #15
0
 def __init__(self, target, source):
     BzrError.__init__(self, source=source.user_url, target=target.user_url)
コード例 #16
0
ファイル: convert.py プロジェクト: breezy-team/breezy-svn
 def __init__(self, dumpfile):
     BzrError.__init__(self)
     self.dumpfile = dumpfile
コード例 #17
0
 def __init__(self, name, url=None):
     BzrError.__init__(self, name=name, url=url)