hgext/rebase.py
changeset 39328 94a4980695f8
parent 39135 485a3349d5ee
child 39915 7198cdbbbde1
equal deleted inserted replaced
39327:a3af500a1362 39328:94a4980695f8
  1889                     break
  1889                     break
  1890             else:
  1890             else:
  1891                 # If 'srcrev' has a successor in rebase set but none in
  1891                 # If 'srcrev' has a successor in rebase set but none in
  1892                 # destination (which would be catched above), we shall skip it
  1892                 # destination (which would be catched above), we shall skip it
  1893                 # and its descendants to avoid divergence.
  1893                 # and its descendants to avoid divergence.
  1894                 if any(s in destmap for s in succrevs):
  1894                 if srcrev in extinctrevs or any(s in destmap for s in succrevs):
  1895                     obsoletewithoutsuccessorindestination.add(srcrev)
  1895                     obsoletewithoutsuccessorindestination.add(srcrev)
  1896 
  1896 
  1897     return (
  1897     return (
  1898         obsoletenotrebased,
  1898         obsoletenotrebased,
  1899         obsoletewithoutsuccessorindestination,
  1899         obsoletewithoutsuccessorindestination,