~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-15 16:59:36 UTC
  • mfrom: (1927 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1929.
  • Revision ID: john@arbash-meinel.com-20060815165936-fdb89c9f58831367
[merge] bzr.dev 1927

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
NULL_REVISION="null:"
30
30
 
 
31
 
31
32
class Revision(object):
32
33
    """Single revision on a branch.
33
34