##// END OF EJS Templates
global: make some docstrings raw strings...
Gregory Szorc -
r41674:0f64091c default
parent child Browse files
Show More
@@ -1278,7 +1278,7 b' def rebasenode(repo, rev, p1, base, coll'
1278 return stats
1278 return stats
1279
1279
1280 def adjustdest(repo, rev, destmap, state, skipped):
1280 def adjustdest(repo, rev, destmap, state, skipped):
1281 """adjust rebase destination given the current rebase state
1281 r"""adjust rebase destination given the current rebase state
1282
1282
1283 rev is what is being rebased. Return a list of two revs, which are the
1283 rev is what is being rebased. Return a list of two revs, which are the
1284 adjusted destinations for rev's p1 and p2, respectively. If a parent is
1284 adjusted destinations for rev's p1 and p2, respectively. If a parent is
@@ -44,7 +44,7 b' def _getbkfile(repo):'
44 return fp
44 return fp
45
45
46 class bmstore(object):
46 class bmstore(object):
47 """Storage for bookmarks.
47 r"""Storage for bookmarks.
48
48
49 This object should do all bookmark-related reads and writes, so
49 This object should do all bookmark-related reads and writes, so
50 that it's fairly simple to replace the storage underlying
50 that it's fairly simple to replace the storage underlying
@@ -142,7 +142,7 b' def _genrevancestors(repo, revs, followf'
142
142
143 def revancestors(repo, revs, followfirst=False, startdepth=None,
143 def revancestors(repo, revs, followfirst=False, startdepth=None,
144 stopdepth=None, cutfunc=None):
144 stopdepth=None, cutfunc=None):
145 """Like revlog.ancestors(), but supports additional options, includes
145 r"""Like revlog.ancestors(), but supports additional options, includes
146 the given revs themselves, and returns a smartset
146 the given revs themselves, and returns a smartset
147
147
148 Scan ends at the stopdepth (exlusive) if specified. Revisions found
148 Scan ends at the stopdepth (exlusive) if specified. Revisions found
@@ -666,7 +666,7 b' class buildhgexe(build_ext):'
666 self.addlongpathsmanifest()
666 self.addlongpathsmanifest()
667
667
668 def addlongpathsmanifest(self):
668 def addlongpathsmanifest(self):
669 """Add manifest pieces so that hg.exe understands long paths
669 r"""Add manifest pieces so that hg.exe understands long paths
670
670
671 This is an EXPERIMENTAL feature, use with care.
671 This is an EXPERIMENTAL feature, use with care.
672 To enable long paths support, one needs to do two things:
672 To enable long paths support, one needs to do two things:
General Comments 0
You need to be logged in to leave comments. Login now