/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Robert J. Tanner
  • Date: 2009-04-08 03:34:31 UTC
  • mfrom: (4266 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4267.
  • Revision ID: tanner@real-time.com-20090408033431-draj0u7nd9bbby53
Merge 1.14rc1 back bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
206
206
def is_reserved_id(revision_id):
207
207
    """Determine whether a revision id is reserved
208
208
 
209
 
    :return: True if the revision is is reserved, False otherwise
 
209
    :return: True if the revision is reserved, False otherwise
210
210
    """
211
211
    return isinstance(revision_id, basestring) and revision_id.endswith(':')
212
212