~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_known_graph_pyx.pyx

Change 'no except' to 'cannot_raise'

Show diffs side-by-side

added added

removed removed

Lines of Context:
594
594
            self._revno_first, self._revno_second, self._revno_last,
595
595
            self.is_first_child, self.seen_by_child)
596
596
 
597
 
    cdef int has_pending_parents(self): # no except
 
597
    cdef int has_pending_parents(self): # cannot_raise
598
598
        if self.left_pending_parent is not None or self.pending_parents:
599
599
            return 1
600
600
        return 0